@khanacademy/perseus-editor 30.4.1 → 31.1.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 +2 -2
- package/dist/components/alignment-select.d.ts +3 -1
- package/dist/components/widget-editor-settings.d.ts +24 -0
- package/dist/components/widget-editor.d.ts +2 -1
- package/dist/editor-page.d.ts +0 -1
- package/dist/es/index.css +3 -9
- package/dist/es/index.css.map +1 -1
- package/dist/es/index.js +79 -77
- package/dist/es/index.js.map +1 -1
- package/dist/index.css +3 -9
- package/dist/index.css.map +1 -1
- package/dist/index.js +79 -77
- package/dist/index.js.map +1 -1
- package/dist/testing/feature-flags-util.d.ts +2 -0
- package/dist/widgets/interactive-graph-editor/interactive-graph-editor.d.ts +135 -76
- package/dist/widgets/interactive-graph-editor/locked-figures/labeled-row.d.ts +1 -0
- package/dist/widgets/interactive-graph-editor/start-coords/asymptote-input.d.ts +8 -0
- package/dist/widgets/interactive-graph-editor/start-coords/coord-input.d.ts +9 -0
- package/dist/widgets/radio/editor.d.ts +4 -0
- package/package.json +8 -8
|
@@ -29,6 +29,7 @@ declare const InteractiveGraph: {
|
|
|
29
29
|
widgetIndex: number;
|
|
30
30
|
alignment: string | null | undefined;
|
|
31
31
|
static: boolean | null | undefined;
|
|
32
|
+
graded?: boolean | null;
|
|
32
33
|
problemNum: number | null | undefined;
|
|
33
34
|
apiOptions: Readonly<Readonly<{
|
|
34
35
|
isArticle?: boolean;
|
|
@@ -62,7 +63,7 @@ declare const InteractiveGraph: {
|
|
|
62
63
|
hintProgressColor?: string;
|
|
63
64
|
canScrollPage?: boolean;
|
|
64
65
|
editorChangeDelay?: number;
|
|
65
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
66
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
66
67
|
}> & {
|
|
67
68
|
baseElements: NonNullable<{
|
|
68
69
|
Link: React.ComponentType<any>;
|
|
@@ -89,6 +90,7 @@ declare const InteractiveGraph: {
|
|
|
89
90
|
linterContext: import("@khanacademy/perseus-linter").LinterContextProps;
|
|
90
91
|
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
91
92
|
}): {
|
|
93
|
+
context: React.ContextType<typeof import("@khanacademy/perseus").PerseusI18nContext>;
|
|
92
94
|
mafsRef: React.RefObject<import("../../../../perseus/src/widgets/interactive-graphs/stateful-mafs-graph").StatefulMafsGraphType>;
|
|
93
95
|
getUserInput(): import("@khanacademy/perseus-core").PerseusInteractiveGraphUserInput;
|
|
94
96
|
getPromptJSON(): import("@khanacademy/perseus").InteractiveGraphPromptJSON | import("@khanacademy/perseus").UnsupportedWidgetPromptJSON;
|
|
@@ -117,6 +119,7 @@ declare const InteractiveGraph: {
|
|
|
117
119
|
widgetIndex: number;
|
|
118
120
|
alignment: string | null | undefined;
|
|
119
121
|
static: boolean | null | undefined;
|
|
122
|
+
graded?: boolean | null;
|
|
120
123
|
problemNum: number | null | undefined;
|
|
121
124
|
apiOptions: Readonly<Readonly<{
|
|
122
125
|
isArticle?: boolean;
|
|
@@ -150,7 +153,7 @@ declare const InteractiveGraph: {
|
|
|
150
153
|
hintProgressColor?: string;
|
|
151
154
|
canScrollPage?: boolean;
|
|
152
155
|
editorChangeDelay?: number;
|
|
153
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
156
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
154
157
|
}> & {
|
|
155
158
|
baseElements: NonNullable<Readonly<{
|
|
156
159
|
isArticle?: boolean;
|
|
@@ -184,7 +187,7 @@ declare const InteractiveGraph: {
|
|
|
184
187
|
hintProgressColor?: string;
|
|
185
188
|
canScrollPage?: boolean;
|
|
186
189
|
editorChangeDelay?: number;
|
|
187
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
190
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
188
191
|
}>["baseElements"]>;
|
|
189
192
|
canScrollPage: NonNullable<Readonly<{
|
|
190
193
|
isArticle?: boolean;
|
|
@@ -218,7 +221,7 @@ declare const InteractiveGraph: {
|
|
|
218
221
|
hintProgressColor?: string;
|
|
219
222
|
canScrollPage?: boolean;
|
|
220
223
|
editorChangeDelay?: number;
|
|
221
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
224
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
222
225
|
}>["canScrollPage"]>;
|
|
223
226
|
editorChangeDelay: NonNullable<Readonly<{
|
|
224
227
|
isArticle?: boolean;
|
|
@@ -252,7 +255,7 @@ declare const InteractiveGraph: {
|
|
|
252
255
|
hintProgressColor?: string;
|
|
253
256
|
canScrollPage?: boolean;
|
|
254
257
|
editorChangeDelay?: number;
|
|
255
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
258
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
256
259
|
}>["editorChangeDelay"]>;
|
|
257
260
|
isArticle: NonNullable<Readonly<{
|
|
258
261
|
isArticle?: boolean;
|
|
@@ -286,7 +289,7 @@ declare const InteractiveGraph: {
|
|
|
286
289
|
hintProgressColor?: string;
|
|
287
290
|
canScrollPage?: boolean;
|
|
288
291
|
editorChangeDelay?: number;
|
|
289
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
292
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
290
293
|
}>["isArticle"]>;
|
|
291
294
|
isMobile: NonNullable<Readonly<{
|
|
292
295
|
isArticle?: boolean;
|
|
@@ -320,7 +323,7 @@ declare const InteractiveGraph: {
|
|
|
320
323
|
hintProgressColor?: string;
|
|
321
324
|
canScrollPage?: boolean;
|
|
322
325
|
editorChangeDelay?: number;
|
|
323
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
326
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
324
327
|
}>["isMobile"]>;
|
|
325
328
|
isMobileApp: NonNullable<Readonly<{
|
|
326
329
|
isArticle?: boolean;
|
|
@@ -354,7 +357,7 @@ declare const InteractiveGraph: {
|
|
|
354
357
|
hintProgressColor?: string;
|
|
355
358
|
canScrollPage?: boolean;
|
|
356
359
|
editorChangeDelay?: number;
|
|
357
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
360
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
358
361
|
}>["isMobileApp"]>;
|
|
359
362
|
editingDisabled: NonNullable<Readonly<{
|
|
360
363
|
isArticle?: boolean;
|
|
@@ -388,7 +391,7 @@ declare const InteractiveGraph: {
|
|
|
388
391
|
hintProgressColor?: string;
|
|
389
392
|
canScrollPage?: boolean;
|
|
390
393
|
editorChangeDelay?: number;
|
|
391
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
394
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
392
395
|
}>["editingDisabled"]>;
|
|
393
396
|
onFocusChange: NonNullable<Readonly<{
|
|
394
397
|
isArticle?: boolean;
|
|
@@ -422,7 +425,7 @@ declare const InteractiveGraph: {
|
|
|
422
425
|
hintProgressColor?: string;
|
|
423
426
|
canScrollPage?: boolean;
|
|
424
427
|
editorChangeDelay?: number;
|
|
425
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
428
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
426
429
|
}>["onFocusChange"]>;
|
|
427
430
|
readOnly: NonNullable<Readonly<{
|
|
428
431
|
isArticle?: boolean;
|
|
@@ -456,7 +459,7 @@ declare const InteractiveGraph: {
|
|
|
456
459
|
hintProgressColor?: string;
|
|
457
460
|
canScrollPage?: boolean;
|
|
458
461
|
editorChangeDelay?: number;
|
|
459
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
462
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
460
463
|
}>["readOnly"]>;
|
|
461
464
|
setDrawingAreaAvailable: NonNullable<Readonly<{
|
|
462
465
|
isArticle?: boolean;
|
|
@@ -490,7 +493,7 @@ declare const InteractiveGraph: {
|
|
|
490
493
|
hintProgressColor?: string;
|
|
491
494
|
canScrollPage?: boolean;
|
|
492
495
|
editorChangeDelay?: number;
|
|
493
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
496
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
494
497
|
}>["setDrawingAreaAvailable"]>;
|
|
495
498
|
showAlignmentOptions: NonNullable<Readonly<{
|
|
496
499
|
isArticle?: boolean;
|
|
@@ -524,7 +527,7 @@ declare const InteractiveGraph: {
|
|
|
524
527
|
hintProgressColor?: string;
|
|
525
528
|
canScrollPage?: boolean;
|
|
526
529
|
editorChangeDelay?: number;
|
|
527
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
530
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
528
531
|
}>["showAlignmentOptions"]>;
|
|
529
532
|
}>;
|
|
530
533
|
keypadElement?: any;
|
|
@@ -538,7 +541,6 @@ declare const InteractiveGraph: {
|
|
|
538
541
|
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
539
542
|
};
|
|
540
543
|
render(): React.JSX.Element;
|
|
541
|
-
context: unknown;
|
|
542
544
|
setState<K extends string | number | symbol>(state: any, callback?: (() => void) | undefined): void;
|
|
543
545
|
forceUpdate(callback?: (() => void) | undefined): void;
|
|
544
546
|
readonly props: Readonly<{
|
|
@@ -567,6 +569,7 @@ declare const InteractiveGraph: {
|
|
|
567
569
|
widgetIndex: number;
|
|
568
570
|
alignment: string | null | undefined;
|
|
569
571
|
static: boolean | null | undefined;
|
|
572
|
+
graded?: boolean | null;
|
|
570
573
|
problemNum: number | null | undefined;
|
|
571
574
|
apiOptions: Readonly<Readonly<{
|
|
572
575
|
isArticle?: boolean;
|
|
@@ -600,7 +603,7 @@ declare const InteractiveGraph: {
|
|
|
600
603
|
hintProgressColor?: string;
|
|
601
604
|
canScrollPage?: boolean;
|
|
602
605
|
editorChangeDelay?: number;
|
|
603
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
606
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
604
607
|
}> & {
|
|
605
608
|
baseElements: NonNullable<{
|
|
606
609
|
Link: React.ComponentType<any>;
|
|
@@ -658,6 +661,7 @@ declare const InteractiveGraph: {
|
|
|
658
661
|
widgetIndex: number;
|
|
659
662
|
alignment: string | null | undefined;
|
|
660
663
|
static: boolean | null | undefined;
|
|
664
|
+
graded?: boolean | null;
|
|
661
665
|
problemNum: number | null | undefined;
|
|
662
666
|
apiOptions: Readonly<Readonly<{
|
|
663
667
|
isArticle?: boolean;
|
|
@@ -691,7 +695,7 @@ declare const InteractiveGraph: {
|
|
|
691
695
|
hintProgressColor?: string;
|
|
692
696
|
canScrollPage?: boolean;
|
|
693
697
|
editorChangeDelay?: number;
|
|
694
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
698
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
695
699
|
}> & {
|
|
696
700
|
baseElements: NonNullable<{
|
|
697
701
|
Link: React.ComponentType<any>;
|
|
@@ -746,6 +750,7 @@ declare const InteractiveGraph: {
|
|
|
746
750
|
widgetIndex: number;
|
|
747
751
|
alignment: string | null | undefined;
|
|
748
752
|
static: boolean | null | undefined;
|
|
753
|
+
graded?: boolean | null;
|
|
749
754
|
problemNum: number | null | undefined;
|
|
750
755
|
apiOptions: Readonly<Readonly<{
|
|
751
756
|
isArticle?: boolean;
|
|
@@ -779,7 +784,7 @@ declare const InteractiveGraph: {
|
|
|
779
784
|
hintProgressColor?: string;
|
|
780
785
|
canScrollPage?: boolean;
|
|
781
786
|
editorChangeDelay?: number;
|
|
782
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
787
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
783
788
|
}> & {
|
|
784
789
|
baseElements: NonNullable<{
|
|
785
790
|
Link: React.ComponentType<any>;
|
|
@@ -832,6 +837,7 @@ declare const InteractiveGraph: {
|
|
|
832
837
|
widgetIndex: number;
|
|
833
838
|
alignment: string | null | undefined;
|
|
834
839
|
static: boolean | null | undefined;
|
|
840
|
+
graded?: boolean | null;
|
|
835
841
|
problemNum: number | null | undefined;
|
|
836
842
|
apiOptions: Readonly<Readonly<{
|
|
837
843
|
isArticle?: boolean;
|
|
@@ -865,7 +871,7 @@ declare const InteractiveGraph: {
|
|
|
865
871
|
hintProgressColor?: string;
|
|
866
872
|
canScrollPage?: boolean;
|
|
867
873
|
editorChangeDelay?: number;
|
|
868
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
874
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
869
875
|
}> & {
|
|
870
876
|
baseElements: NonNullable<{
|
|
871
877
|
Link: React.ComponentType<any>;
|
|
@@ -920,6 +926,7 @@ declare const InteractiveGraph: {
|
|
|
920
926
|
widgetIndex: number;
|
|
921
927
|
alignment: string | null | undefined;
|
|
922
928
|
static: boolean | null | undefined;
|
|
929
|
+
graded?: boolean | null;
|
|
923
930
|
problemNum: number | null | undefined;
|
|
924
931
|
apiOptions: Readonly<Readonly<{
|
|
925
932
|
isArticle?: boolean;
|
|
@@ -953,7 +960,7 @@ declare const InteractiveGraph: {
|
|
|
953
960
|
hintProgressColor?: string;
|
|
954
961
|
canScrollPage?: boolean;
|
|
955
962
|
editorChangeDelay?: number;
|
|
956
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
963
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
957
964
|
}> & {
|
|
958
965
|
baseElements: NonNullable<{
|
|
959
966
|
Link: React.ComponentType<any>;
|
|
@@ -1006,6 +1013,7 @@ declare const InteractiveGraph: {
|
|
|
1006
1013
|
widgetIndex: number;
|
|
1007
1014
|
alignment: string | null | undefined;
|
|
1008
1015
|
static: boolean | null | undefined;
|
|
1016
|
+
graded?: boolean | null;
|
|
1009
1017
|
problemNum: number | null | undefined;
|
|
1010
1018
|
apiOptions: Readonly<Readonly<{
|
|
1011
1019
|
isArticle?: boolean;
|
|
@@ -1039,7 +1047,7 @@ declare const InteractiveGraph: {
|
|
|
1039
1047
|
hintProgressColor?: string;
|
|
1040
1048
|
canScrollPage?: boolean;
|
|
1041
1049
|
editorChangeDelay?: number;
|
|
1042
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1050
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1043
1051
|
}> & {
|
|
1044
1052
|
baseElements: NonNullable<{
|
|
1045
1053
|
Link: React.ComponentType<any>;
|
|
@@ -1092,6 +1100,7 @@ declare const InteractiveGraph: {
|
|
|
1092
1100
|
widgetIndex: number;
|
|
1093
1101
|
alignment: string | null | undefined;
|
|
1094
1102
|
static: boolean | null | undefined;
|
|
1103
|
+
graded?: boolean | null;
|
|
1095
1104
|
problemNum: number | null | undefined;
|
|
1096
1105
|
apiOptions: Readonly<Readonly<{
|
|
1097
1106
|
isArticle?: boolean;
|
|
@@ -1125,7 +1134,7 @@ declare const InteractiveGraph: {
|
|
|
1125
1134
|
hintProgressColor?: string;
|
|
1126
1135
|
canScrollPage?: boolean;
|
|
1127
1136
|
editorChangeDelay?: number;
|
|
1128
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1137
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1129
1138
|
}> & {
|
|
1130
1139
|
baseElements: NonNullable<{
|
|
1131
1140
|
Link: React.ComponentType<any>;
|
|
@@ -1178,6 +1187,7 @@ declare const InteractiveGraph: {
|
|
|
1178
1187
|
widgetIndex: number;
|
|
1179
1188
|
alignment: string | null | undefined;
|
|
1180
1189
|
static: boolean | null | undefined;
|
|
1190
|
+
graded?: boolean | null;
|
|
1181
1191
|
problemNum: number | null | undefined;
|
|
1182
1192
|
apiOptions: Readonly<Readonly<{
|
|
1183
1193
|
isArticle?: boolean;
|
|
@@ -1211,7 +1221,7 @@ declare const InteractiveGraph: {
|
|
|
1211
1221
|
hintProgressColor?: string;
|
|
1212
1222
|
canScrollPage?: boolean;
|
|
1213
1223
|
editorChangeDelay?: number;
|
|
1214
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1224
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1215
1225
|
}> & {
|
|
1216
1226
|
baseElements: NonNullable<{
|
|
1217
1227
|
Link: React.ComponentType<any>;
|
|
@@ -1265,6 +1275,7 @@ declare const InteractiveGraph: {
|
|
|
1265
1275
|
widgetIndex: number;
|
|
1266
1276
|
alignment: string | null | undefined;
|
|
1267
1277
|
static: boolean | null | undefined;
|
|
1278
|
+
graded?: boolean | null;
|
|
1268
1279
|
problemNum: number | null | undefined;
|
|
1269
1280
|
apiOptions: Readonly<Readonly<{
|
|
1270
1281
|
isArticle?: boolean;
|
|
@@ -1298,7 +1309,7 @@ declare const InteractiveGraph: {
|
|
|
1298
1309
|
hintProgressColor?: string;
|
|
1299
1310
|
canScrollPage?: boolean;
|
|
1300
1311
|
editorChangeDelay?: number;
|
|
1301
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1312
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1302
1313
|
}> & {
|
|
1303
1314
|
baseElements: NonNullable<{
|
|
1304
1315
|
Link: React.ComponentType<any>;
|
|
@@ -1325,6 +1336,7 @@ declare const InteractiveGraph: {
|
|
|
1325
1336
|
linterContext: import("@khanacademy/perseus-linter").LinterContextProps;
|
|
1326
1337
|
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
1327
1338
|
}, context: any): {
|
|
1339
|
+
context: React.ContextType<typeof import("@khanacademy/perseus").PerseusI18nContext>;
|
|
1328
1340
|
mafsRef: React.RefObject<import("../../../../perseus/src/widgets/interactive-graphs/stateful-mafs-graph").StatefulMafsGraphType>;
|
|
1329
1341
|
getUserInput(): import("@khanacademy/perseus-core").PerseusInteractiveGraphUserInput;
|
|
1330
1342
|
getPromptJSON(): import("@khanacademy/perseus").InteractiveGraphPromptJSON | import("@khanacademy/perseus").UnsupportedWidgetPromptJSON;
|
|
@@ -1353,6 +1365,7 @@ declare const InteractiveGraph: {
|
|
|
1353
1365
|
widgetIndex: number;
|
|
1354
1366
|
alignment: string | null | undefined;
|
|
1355
1367
|
static: boolean | null | undefined;
|
|
1368
|
+
graded?: boolean | null;
|
|
1356
1369
|
problemNum: number | null | undefined;
|
|
1357
1370
|
apiOptions: Readonly<Readonly<{
|
|
1358
1371
|
isArticle?: boolean;
|
|
@@ -1386,7 +1399,7 @@ declare const InteractiveGraph: {
|
|
|
1386
1399
|
hintProgressColor?: string;
|
|
1387
1400
|
canScrollPage?: boolean;
|
|
1388
1401
|
editorChangeDelay?: number;
|
|
1389
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1402
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1390
1403
|
}> & {
|
|
1391
1404
|
baseElements: NonNullable<Readonly<{
|
|
1392
1405
|
isArticle?: boolean;
|
|
@@ -1420,7 +1433,7 @@ declare const InteractiveGraph: {
|
|
|
1420
1433
|
hintProgressColor?: string;
|
|
1421
1434
|
canScrollPage?: boolean;
|
|
1422
1435
|
editorChangeDelay?: number;
|
|
1423
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1436
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1424
1437
|
}>["baseElements"]>;
|
|
1425
1438
|
canScrollPage: NonNullable<Readonly<{
|
|
1426
1439
|
isArticle?: boolean;
|
|
@@ -1454,7 +1467,7 @@ declare const InteractiveGraph: {
|
|
|
1454
1467
|
hintProgressColor?: string;
|
|
1455
1468
|
canScrollPage?: boolean;
|
|
1456
1469
|
editorChangeDelay?: number;
|
|
1457
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1470
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1458
1471
|
}>["canScrollPage"]>;
|
|
1459
1472
|
editorChangeDelay: NonNullable<Readonly<{
|
|
1460
1473
|
isArticle?: boolean;
|
|
@@ -1488,7 +1501,7 @@ declare const InteractiveGraph: {
|
|
|
1488
1501
|
hintProgressColor?: string;
|
|
1489
1502
|
canScrollPage?: boolean;
|
|
1490
1503
|
editorChangeDelay?: number;
|
|
1491
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1504
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1492
1505
|
}>["editorChangeDelay"]>;
|
|
1493
1506
|
isArticle: NonNullable<Readonly<{
|
|
1494
1507
|
isArticle?: boolean;
|
|
@@ -1522,7 +1535,7 @@ declare const InteractiveGraph: {
|
|
|
1522
1535
|
hintProgressColor?: string;
|
|
1523
1536
|
canScrollPage?: boolean;
|
|
1524
1537
|
editorChangeDelay?: number;
|
|
1525
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1538
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1526
1539
|
}>["isArticle"]>;
|
|
1527
1540
|
isMobile: NonNullable<Readonly<{
|
|
1528
1541
|
isArticle?: boolean;
|
|
@@ -1556,7 +1569,7 @@ declare const InteractiveGraph: {
|
|
|
1556
1569
|
hintProgressColor?: string;
|
|
1557
1570
|
canScrollPage?: boolean;
|
|
1558
1571
|
editorChangeDelay?: number;
|
|
1559
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1572
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1560
1573
|
}>["isMobile"]>;
|
|
1561
1574
|
isMobileApp: NonNullable<Readonly<{
|
|
1562
1575
|
isArticle?: boolean;
|
|
@@ -1590,7 +1603,7 @@ declare const InteractiveGraph: {
|
|
|
1590
1603
|
hintProgressColor?: string;
|
|
1591
1604
|
canScrollPage?: boolean;
|
|
1592
1605
|
editorChangeDelay?: number;
|
|
1593
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1606
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1594
1607
|
}>["isMobileApp"]>;
|
|
1595
1608
|
editingDisabled: NonNullable<Readonly<{
|
|
1596
1609
|
isArticle?: boolean;
|
|
@@ -1624,7 +1637,7 @@ declare const InteractiveGraph: {
|
|
|
1624
1637
|
hintProgressColor?: string;
|
|
1625
1638
|
canScrollPage?: boolean;
|
|
1626
1639
|
editorChangeDelay?: number;
|
|
1627
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1640
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1628
1641
|
}>["editingDisabled"]>;
|
|
1629
1642
|
onFocusChange: NonNullable<Readonly<{
|
|
1630
1643
|
isArticle?: boolean;
|
|
@@ -1658,7 +1671,7 @@ declare const InteractiveGraph: {
|
|
|
1658
1671
|
hintProgressColor?: string;
|
|
1659
1672
|
canScrollPage?: boolean;
|
|
1660
1673
|
editorChangeDelay?: number;
|
|
1661
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1674
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1662
1675
|
}>["onFocusChange"]>;
|
|
1663
1676
|
readOnly: NonNullable<Readonly<{
|
|
1664
1677
|
isArticle?: boolean;
|
|
@@ -1692,7 +1705,7 @@ declare const InteractiveGraph: {
|
|
|
1692
1705
|
hintProgressColor?: string;
|
|
1693
1706
|
canScrollPage?: boolean;
|
|
1694
1707
|
editorChangeDelay?: number;
|
|
1695
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1708
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1696
1709
|
}>["readOnly"]>;
|
|
1697
1710
|
setDrawingAreaAvailable: NonNullable<Readonly<{
|
|
1698
1711
|
isArticle?: boolean;
|
|
@@ -1726,7 +1739,7 @@ declare const InteractiveGraph: {
|
|
|
1726
1739
|
hintProgressColor?: string;
|
|
1727
1740
|
canScrollPage?: boolean;
|
|
1728
1741
|
editorChangeDelay?: number;
|
|
1729
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1742
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1730
1743
|
}>["setDrawingAreaAvailable"]>;
|
|
1731
1744
|
showAlignmentOptions: NonNullable<Readonly<{
|
|
1732
1745
|
isArticle?: boolean;
|
|
@@ -1760,7 +1773,7 @@ declare const InteractiveGraph: {
|
|
|
1760
1773
|
hintProgressColor?: string;
|
|
1761
1774
|
canScrollPage?: boolean;
|
|
1762
1775
|
editorChangeDelay?: number;
|
|
1763
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1776
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1764
1777
|
}>["showAlignmentOptions"]>;
|
|
1765
1778
|
}>;
|
|
1766
1779
|
keypadElement?: any;
|
|
@@ -1774,7 +1787,6 @@ declare const InteractiveGraph: {
|
|
|
1774
1787
|
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
1775
1788
|
};
|
|
1776
1789
|
render(): React.JSX.Element;
|
|
1777
|
-
context: unknown;
|
|
1778
1790
|
setState<K extends string | number | symbol>(state: any, callback?: (() => void) | undefined): void;
|
|
1779
1791
|
forceUpdate(callback?: (() => void) | undefined): void;
|
|
1780
1792
|
readonly props: Readonly<{
|
|
@@ -1803,6 +1815,7 @@ declare const InteractiveGraph: {
|
|
|
1803
1815
|
widgetIndex: number;
|
|
1804
1816
|
alignment: string | null | undefined;
|
|
1805
1817
|
static: boolean | null | undefined;
|
|
1818
|
+
graded?: boolean | null;
|
|
1806
1819
|
problemNum: number | null | undefined;
|
|
1807
1820
|
apiOptions: Readonly<Readonly<{
|
|
1808
1821
|
isArticle?: boolean;
|
|
@@ -1836,7 +1849,7 @@ declare const InteractiveGraph: {
|
|
|
1836
1849
|
hintProgressColor?: string;
|
|
1837
1850
|
canScrollPage?: boolean;
|
|
1838
1851
|
editorChangeDelay?: number;
|
|
1839
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1852
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1840
1853
|
}> & {
|
|
1841
1854
|
baseElements: NonNullable<{
|
|
1842
1855
|
Link: React.ComponentType<any>;
|
|
@@ -1894,6 +1907,7 @@ declare const InteractiveGraph: {
|
|
|
1894
1907
|
widgetIndex: number;
|
|
1895
1908
|
alignment: string | null | undefined;
|
|
1896
1909
|
static: boolean | null | undefined;
|
|
1910
|
+
graded?: boolean | null;
|
|
1897
1911
|
problemNum: number | null | undefined;
|
|
1898
1912
|
apiOptions: Readonly<Readonly<{
|
|
1899
1913
|
isArticle?: boolean;
|
|
@@ -1927,7 +1941,7 @@ declare const InteractiveGraph: {
|
|
|
1927
1941
|
hintProgressColor?: string;
|
|
1928
1942
|
canScrollPage?: boolean;
|
|
1929
1943
|
editorChangeDelay?: number;
|
|
1930
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
1944
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
1931
1945
|
}> & {
|
|
1932
1946
|
baseElements: NonNullable<{
|
|
1933
1947
|
Link: React.ComponentType<any>;
|
|
@@ -1982,6 +1996,7 @@ declare const InteractiveGraph: {
|
|
|
1982
1996
|
widgetIndex: number;
|
|
1983
1997
|
alignment: string | null | undefined;
|
|
1984
1998
|
static: boolean | null | undefined;
|
|
1999
|
+
graded?: boolean | null;
|
|
1985
2000
|
problemNum: number | null | undefined;
|
|
1986
2001
|
apiOptions: Readonly<Readonly<{
|
|
1987
2002
|
isArticle?: boolean;
|
|
@@ -2015,7 +2030,7 @@ declare const InteractiveGraph: {
|
|
|
2015
2030
|
hintProgressColor?: string;
|
|
2016
2031
|
canScrollPage?: boolean;
|
|
2017
2032
|
editorChangeDelay?: number;
|
|
2018
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2033
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2019
2034
|
}> & {
|
|
2020
2035
|
baseElements: NonNullable<{
|
|
2021
2036
|
Link: React.ComponentType<any>;
|
|
@@ -2068,6 +2083,7 @@ declare const InteractiveGraph: {
|
|
|
2068
2083
|
widgetIndex: number;
|
|
2069
2084
|
alignment: string | null | undefined;
|
|
2070
2085
|
static: boolean | null | undefined;
|
|
2086
|
+
graded?: boolean | null;
|
|
2071
2087
|
problemNum: number | null | undefined;
|
|
2072
2088
|
apiOptions: Readonly<Readonly<{
|
|
2073
2089
|
isArticle?: boolean;
|
|
@@ -2101,7 +2117,7 @@ declare const InteractiveGraph: {
|
|
|
2101
2117
|
hintProgressColor?: string;
|
|
2102
2118
|
canScrollPage?: boolean;
|
|
2103
2119
|
editorChangeDelay?: number;
|
|
2104
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2120
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2105
2121
|
}> & {
|
|
2106
2122
|
baseElements: NonNullable<{
|
|
2107
2123
|
Link: React.ComponentType<any>;
|
|
@@ -2156,6 +2172,7 @@ declare const InteractiveGraph: {
|
|
|
2156
2172
|
widgetIndex: number;
|
|
2157
2173
|
alignment: string | null | undefined;
|
|
2158
2174
|
static: boolean | null | undefined;
|
|
2175
|
+
graded?: boolean | null;
|
|
2159
2176
|
problemNum: number | null | undefined;
|
|
2160
2177
|
apiOptions: Readonly<Readonly<{
|
|
2161
2178
|
isArticle?: boolean;
|
|
@@ -2189,7 +2206,7 @@ declare const InteractiveGraph: {
|
|
|
2189
2206
|
hintProgressColor?: string;
|
|
2190
2207
|
canScrollPage?: boolean;
|
|
2191
2208
|
editorChangeDelay?: number;
|
|
2192
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2209
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2193
2210
|
}> & {
|
|
2194
2211
|
baseElements: NonNullable<{
|
|
2195
2212
|
Link: React.ComponentType<any>;
|
|
@@ -2242,6 +2259,7 @@ declare const InteractiveGraph: {
|
|
|
2242
2259
|
widgetIndex: number;
|
|
2243
2260
|
alignment: string | null | undefined;
|
|
2244
2261
|
static: boolean | null | undefined;
|
|
2262
|
+
graded?: boolean | null;
|
|
2245
2263
|
problemNum: number | null | undefined;
|
|
2246
2264
|
apiOptions: Readonly<Readonly<{
|
|
2247
2265
|
isArticle?: boolean;
|
|
@@ -2275,7 +2293,7 @@ declare const InteractiveGraph: {
|
|
|
2275
2293
|
hintProgressColor?: string;
|
|
2276
2294
|
canScrollPage?: boolean;
|
|
2277
2295
|
editorChangeDelay?: number;
|
|
2278
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2296
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2279
2297
|
}> & {
|
|
2280
2298
|
baseElements: NonNullable<{
|
|
2281
2299
|
Link: React.ComponentType<any>;
|
|
@@ -2328,6 +2346,7 @@ declare const InteractiveGraph: {
|
|
|
2328
2346
|
widgetIndex: number;
|
|
2329
2347
|
alignment: string | null | undefined;
|
|
2330
2348
|
static: boolean | null | undefined;
|
|
2349
|
+
graded?: boolean | null;
|
|
2331
2350
|
problemNum: number | null | undefined;
|
|
2332
2351
|
apiOptions: Readonly<Readonly<{
|
|
2333
2352
|
isArticle?: boolean;
|
|
@@ -2361,7 +2380,7 @@ declare const InteractiveGraph: {
|
|
|
2361
2380
|
hintProgressColor?: string;
|
|
2362
2381
|
canScrollPage?: boolean;
|
|
2363
2382
|
editorChangeDelay?: number;
|
|
2364
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2383
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2365
2384
|
}> & {
|
|
2366
2385
|
baseElements: NonNullable<{
|
|
2367
2386
|
Link: React.ComponentType<any>;
|
|
@@ -2414,6 +2433,7 @@ declare const InteractiveGraph: {
|
|
|
2414
2433
|
widgetIndex: number;
|
|
2415
2434
|
alignment: string | null | undefined;
|
|
2416
2435
|
static: boolean | null | undefined;
|
|
2436
|
+
graded?: boolean | null;
|
|
2417
2437
|
problemNum: number | null | undefined;
|
|
2418
2438
|
apiOptions: Readonly<Readonly<{
|
|
2419
2439
|
isArticle?: boolean;
|
|
@@ -2447,7 +2467,7 @@ declare const InteractiveGraph: {
|
|
|
2447
2467
|
hintProgressColor?: string;
|
|
2448
2468
|
canScrollPage?: boolean;
|
|
2449
2469
|
editorChangeDelay?: number;
|
|
2450
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2470
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2451
2471
|
}> & {
|
|
2452
2472
|
baseElements: NonNullable<{
|
|
2453
2473
|
Link: React.ComponentType<any>;
|
|
@@ -2475,6 +2495,7 @@ declare const InteractiveGraph: {
|
|
|
2475
2495
|
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
2476
2496
|
}>, nextState: Readonly<any>, nextContext: any): void;
|
|
2477
2497
|
};
|
|
2498
|
+
contextType: React.Context<import("../../../../perseus/src/components/i18n-context").I18nContextType>;
|
|
2478
2499
|
defaultProps: {
|
|
2479
2500
|
labels: string[];
|
|
2480
2501
|
labelLocation: AxisLabelLocation;
|
|
@@ -2513,6 +2534,7 @@ declare const InteractiveGraph: {
|
|
|
2513
2534
|
widgetIndex: number;
|
|
2514
2535
|
alignment: string | null | undefined;
|
|
2515
2536
|
static: boolean | null | undefined;
|
|
2537
|
+
graded?: boolean | null;
|
|
2516
2538
|
problemNum: number | null | undefined;
|
|
2517
2539
|
apiOptions: Readonly<Readonly<{
|
|
2518
2540
|
isArticle?: boolean;
|
|
@@ -2546,7 +2568,7 @@ declare const InteractiveGraph: {
|
|
|
2546
2568
|
hintProgressColor?: string;
|
|
2547
2569
|
canScrollPage?: boolean;
|
|
2548
2570
|
editorChangeDelay?: number;
|
|
2549
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2571
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2550
2572
|
}> & {
|
|
2551
2573
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
2552
2574
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -2597,6 +2619,7 @@ declare const InteractiveGraph: {
|
|
|
2597
2619
|
widgetIndex: number;
|
|
2598
2620
|
alignment: string | null | undefined;
|
|
2599
2621
|
static: boolean | null | undefined;
|
|
2622
|
+
graded?: boolean | null;
|
|
2600
2623
|
problemNum: number | null | undefined;
|
|
2601
2624
|
apiOptions: Readonly<Readonly<{
|
|
2602
2625
|
isArticle?: boolean;
|
|
@@ -2630,7 +2653,7 @@ declare const InteractiveGraph: {
|
|
|
2630
2653
|
hintProgressColor?: string;
|
|
2631
2654
|
canScrollPage?: boolean;
|
|
2632
2655
|
editorChangeDelay?: number;
|
|
2633
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2656
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2634
2657
|
}> & {
|
|
2635
2658
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
2636
2659
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -2681,6 +2704,7 @@ declare const InteractiveGraph: {
|
|
|
2681
2704
|
widgetIndex: number;
|
|
2682
2705
|
alignment: string | null | undefined;
|
|
2683
2706
|
static: boolean | null | undefined;
|
|
2707
|
+
graded?: boolean | null;
|
|
2684
2708
|
problemNum: number | null | undefined;
|
|
2685
2709
|
apiOptions: Readonly<Readonly<{
|
|
2686
2710
|
isArticle?: boolean;
|
|
@@ -2714,7 +2738,7 @@ declare const InteractiveGraph: {
|
|
|
2714
2738
|
hintProgressColor?: string;
|
|
2715
2739
|
canScrollPage?: boolean;
|
|
2716
2740
|
editorChangeDelay?: number;
|
|
2717
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2741
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2718
2742
|
}> & {
|
|
2719
2743
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
2720
2744
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -2765,6 +2789,7 @@ declare const InteractiveGraph: {
|
|
|
2765
2789
|
widgetIndex: number;
|
|
2766
2790
|
alignment: string | null | undefined;
|
|
2767
2791
|
static: boolean | null | undefined;
|
|
2792
|
+
graded?: boolean | null;
|
|
2768
2793
|
problemNum: number | null | undefined;
|
|
2769
2794
|
apiOptions: Readonly<Readonly<{
|
|
2770
2795
|
isArticle?: boolean;
|
|
@@ -2798,7 +2823,7 @@ declare const InteractiveGraph: {
|
|
|
2798
2823
|
hintProgressColor?: string;
|
|
2799
2824
|
canScrollPage?: boolean;
|
|
2800
2825
|
editorChangeDelay?: number;
|
|
2801
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2826
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2802
2827
|
}> & {
|
|
2803
2828
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
2804
2829
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -2849,6 +2874,7 @@ declare const InteractiveGraph: {
|
|
|
2849
2874
|
widgetIndex: number;
|
|
2850
2875
|
alignment: string | null | undefined;
|
|
2851
2876
|
static: boolean | null | undefined;
|
|
2877
|
+
graded?: boolean | null;
|
|
2852
2878
|
problemNum: number | null | undefined;
|
|
2853
2879
|
apiOptions: Readonly<Readonly<{
|
|
2854
2880
|
isArticle?: boolean;
|
|
@@ -2882,7 +2908,7 @@ declare const InteractiveGraph: {
|
|
|
2882
2908
|
hintProgressColor?: string;
|
|
2883
2909
|
canScrollPage?: boolean;
|
|
2884
2910
|
editorChangeDelay?: number;
|
|
2885
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2911
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2886
2912
|
}> & {
|
|
2887
2913
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
2888
2914
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -2933,6 +2959,7 @@ declare const InteractiveGraph: {
|
|
|
2933
2959
|
widgetIndex: number;
|
|
2934
2960
|
alignment: string | null | undefined;
|
|
2935
2961
|
static: boolean | null | undefined;
|
|
2962
|
+
graded?: boolean | null;
|
|
2936
2963
|
problemNum: number | null | undefined;
|
|
2937
2964
|
apiOptions: Readonly<Readonly<{
|
|
2938
2965
|
isArticle?: boolean;
|
|
@@ -2966,7 +2993,7 @@ declare const InteractiveGraph: {
|
|
|
2966
2993
|
hintProgressColor?: string;
|
|
2967
2994
|
canScrollPage?: boolean;
|
|
2968
2995
|
editorChangeDelay?: number;
|
|
2969
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
2996
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
2970
2997
|
}> & {
|
|
2971
2998
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
2972
2999
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3018,6 +3045,7 @@ declare const InteractiveGraph: {
|
|
|
3018
3045
|
widgetIndex: number;
|
|
3019
3046
|
alignment: string | null | undefined;
|
|
3020
3047
|
static: boolean | null | undefined;
|
|
3048
|
+
graded?: boolean | null;
|
|
3021
3049
|
problemNum: number | null | undefined;
|
|
3022
3050
|
apiOptions: Readonly<Readonly<{
|
|
3023
3051
|
isArticle?: boolean;
|
|
@@ -3051,7 +3079,7 @@ declare const InteractiveGraph: {
|
|
|
3051
3079
|
hintProgressColor?: string;
|
|
3052
3080
|
canScrollPage?: boolean;
|
|
3053
3081
|
editorChangeDelay?: number;
|
|
3054
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3082
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3055
3083
|
}> & {
|
|
3056
3084
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3057
3085
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3102,6 +3130,7 @@ declare const InteractiveGraph: {
|
|
|
3102
3130
|
widgetIndex: number;
|
|
3103
3131
|
alignment: string | null | undefined;
|
|
3104
3132
|
static: boolean | null | undefined;
|
|
3133
|
+
graded?: boolean | null;
|
|
3105
3134
|
problemNum: number | null | undefined;
|
|
3106
3135
|
apiOptions: Readonly<Readonly<{
|
|
3107
3136
|
isArticle?: boolean;
|
|
@@ -3135,7 +3164,7 @@ declare const InteractiveGraph: {
|
|
|
3135
3164
|
hintProgressColor?: string;
|
|
3136
3165
|
canScrollPage?: boolean;
|
|
3137
3166
|
editorChangeDelay?: number;
|
|
3138
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3167
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3139
3168
|
}> & {
|
|
3140
3169
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3141
3170
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3187,6 +3216,7 @@ declare const InteractiveGraph: {
|
|
|
3187
3216
|
widgetIndex: number;
|
|
3188
3217
|
alignment: string | null | undefined;
|
|
3189
3218
|
static: boolean | null | undefined;
|
|
3219
|
+
graded?: boolean | null;
|
|
3190
3220
|
problemNum: number | null | undefined;
|
|
3191
3221
|
apiOptions: Readonly<Readonly<{
|
|
3192
3222
|
isArticle?: boolean;
|
|
@@ -3220,7 +3250,7 @@ declare const InteractiveGraph: {
|
|
|
3220
3250
|
hintProgressColor?: string;
|
|
3221
3251
|
canScrollPage?: boolean;
|
|
3222
3252
|
editorChangeDelay?: number;
|
|
3223
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3253
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3224
3254
|
}> & {
|
|
3225
3255
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3226
3256
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3271,6 +3301,7 @@ declare const InteractiveGraph: {
|
|
|
3271
3301
|
widgetIndex: number;
|
|
3272
3302
|
alignment: string | null | undefined;
|
|
3273
3303
|
static: boolean | null | undefined;
|
|
3304
|
+
graded?: boolean | null;
|
|
3274
3305
|
problemNum: number | null | undefined;
|
|
3275
3306
|
apiOptions: Readonly<Readonly<{
|
|
3276
3307
|
isArticle?: boolean;
|
|
@@ -3304,7 +3335,7 @@ declare const InteractiveGraph: {
|
|
|
3304
3335
|
hintProgressColor?: string;
|
|
3305
3336
|
canScrollPage?: boolean;
|
|
3306
3337
|
editorChangeDelay?: number;
|
|
3307
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3338
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3308
3339
|
}> & {
|
|
3309
3340
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3310
3341
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3355,6 +3386,7 @@ declare const InteractiveGraph: {
|
|
|
3355
3386
|
widgetIndex: number;
|
|
3356
3387
|
alignment: string | null | undefined;
|
|
3357
3388
|
static: boolean | null | undefined;
|
|
3389
|
+
graded?: boolean | null;
|
|
3358
3390
|
problemNum: number | null | undefined;
|
|
3359
3391
|
apiOptions: Readonly<Readonly<{
|
|
3360
3392
|
isArticle?: boolean;
|
|
@@ -3388,7 +3420,7 @@ declare const InteractiveGraph: {
|
|
|
3388
3420
|
hintProgressColor?: string;
|
|
3389
3421
|
canScrollPage?: boolean;
|
|
3390
3422
|
editorChangeDelay?: number;
|
|
3391
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3423
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3392
3424
|
}> & {
|
|
3393
3425
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3394
3426
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3439,6 +3471,7 @@ declare const InteractiveGraph: {
|
|
|
3439
3471
|
widgetIndex: number;
|
|
3440
3472
|
alignment: string | null | undefined;
|
|
3441
3473
|
static: boolean | null | undefined;
|
|
3474
|
+
graded?: boolean | null;
|
|
3442
3475
|
problemNum: number | null | undefined;
|
|
3443
3476
|
apiOptions: Readonly<Readonly<{
|
|
3444
3477
|
isArticle?: boolean;
|
|
@@ -3472,7 +3505,7 @@ declare const InteractiveGraph: {
|
|
|
3472
3505
|
hintProgressColor?: string;
|
|
3473
3506
|
canScrollPage?: boolean;
|
|
3474
3507
|
editorChangeDelay?: number;
|
|
3475
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3508
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3476
3509
|
}> & {
|
|
3477
3510
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3478
3511
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3523,6 +3556,7 @@ declare const InteractiveGraph: {
|
|
|
3523
3556
|
widgetIndex: number;
|
|
3524
3557
|
alignment: string | null | undefined;
|
|
3525
3558
|
static: boolean | null | undefined;
|
|
3559
|
+
graded?: boolean | null;
|
|
3526
3560
|
problemNum: number | null | undefined;
|
|
3527
3561
|
apiOptions: Readonly<Readonly<{
|
|
3528
3562
|
isArticle?: boolean;
|
|
@@ -3556,7 +3590,7 @@ declare const InteractiveGraph: {
|
|
|
3556
3590
|
hintProgressColor?: string;
|
|
3557
3591
|
canScrollPage?: boolean;
|
|
3558
3592
|
editorChangeDelay?: number;
|
|
3559
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3593
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3560
3594
|
}> & {
|
|
3561
3595
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3562
3596
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3607,6 +3641,7 @@ declare const InteractiveGraph: {
|
|
|
3607
3641
|
widgetIndex: number;
|
|
3608
3642
|
alignment: string | null | undefined;
|
|
3609
3643
|
static: boolean | null | undefined;
|
|
3644
|
+
graded?: boolean | null;
|
|
3610
3645
|
problemNum: number | null | undefined;
|
|
3611
3646
|
apiOptions: Readonly<Readonly<{
|
|
3612
3647
|
isArticle?: boolean;
|
|
@@ -3640,7 +3675,7 @@ declare const InteractiveGraph: {
|
|
|
3640
3675
|
hintProgressColor?: string;
|
|
3641
3676
|
canScrollPage?: boolean;
|
|
3642
3677
|
editorChangeDelay?: number;
|
|
3643
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3678
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3644
3679
|
}> & {
|
|
3645
3680
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3646
3681
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3691,6 +3726,7 @@ declare const InteractiveGraph: {
|
|
|
3691
3726
|
widgetIndex: number;
|
|
3692
3727
|
alignment: string | null | undefined;
|
|
3693
3728
|
static: boolean | null | undefined;
|
|
3729
|
+
graded?: boolean | null;
|
|
3694
3730
|
problemNum: number | null | undefined;
|
|
3695
3731
|
apiOptions: Readonly<Readonly<{
|
|
3696
3732
|
isArticle?: boolean;
|
|
@@ -3724,7 +3760,7 @@ declare const InteractiveGraph: {
|
|
|
3724
3760
|
hintProgressColor?: string;
|
|
3725
3761
|
canScrollPage?: boolean;
|
|
3726
3762
|
editorChangeDelay?: number;
|
|
3727
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3763
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3728
3764
|
}> & {
|
|
3729
3765
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3730
3766
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3775,6 +3811,7 @@ declare const InteractiveGraph: {
|
|
|
3775
3811
|
widgetIndex: number;
|
|
3776
3812
|
alignment: string | null | undefined;
|
|
3777
3813
|
static: boolean | null | undefined;
|
|
3814
|
+
graded?: boolean | null;
|
|
3778
3815
|
problemNum: number | null | undefined;
|
|
3779
3816
|
apiOptions: Readonly<Readonly<{
|
|
3780
3817
|
isArticle?: boolean;
|
|
@@ -3808,7 +3845,7 @@ declare const InteractiveGraph: {
|
|
|
3808
3845
|
hintProgressColor?: string;
|
|
3809
3846
|
canScrollPage?: boolean;
|
|
3810
3847
|
editorChangeDelay?: number;
|
|
3811
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3848
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3812
3849
|
}> & {
|
|
3813
3850
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3814
3851
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3859,6 +3896,7 @@ declare const InteractiveGraph: {
|
|
|
3859
3896
|
widgetIndex: number;
|
|
3860
3897
|
alignment: string | null | undefined;
|
|
3861
3898
|
static: boolean | null | undefined;
|
|
3899
|
+
graded?: boolean | null;
|
|
3862
3900
|
problemNum: number | null | undefined;
|
|
3863
3901
|
apiOptions: Readonly<Readonly<{
|
|
3864
3902
|
isArticle?: boolean;
|
|
@@ -3892,7 +3930,7 @@ declare const InteractiveGraph: {
|
|
|
3892
3930
|
hintProgressColor?: string;
|
|
3893
3931
|
canScrollPage?: boolean;
|
|
3894
3932
|
editorChangeDelay?: number;
|
|
3895
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3933
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3896
3934
|
}> & {
|
|
3897
3935
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3898
3936
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -3943,6 +3981,7 @@ declare const InteractiveGraph: {
|
|
|
3943
3981
|
widgetIndex: number;
|
|
3944
3982
|
alignment: string | null | undefined;
|
|
3945
3983
|
static: boolean | null | undefined;
|
|
3984
|
+
graded?: boolean | null;
|
|
3946
3985
|
problemNum: number | null | undefined;
|
|
3947
3986
|
apiOptions: Readonly<Readonly<{
|
|
3948
3987
|
isArticle?: boolean;
|
|
@@ -3976,7 +4015,7 @@ declare const InteractiveGraph: {
|
|
|
3976
4015
|
hintProgressColor?: string;
|
|
3977
4016
|
canScrollPage?: boolean;
|
|
3978
4017
|
editorChangeDelay?: number;
|
|
3979
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4018
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
3980
4019
|
}> & {
|
|
3981
4020
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3982
4021
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4027,6 +4066,7 @@ declare const InteractiveGraph: {
|
|
|
4027
4066
|
widgetIndex: number;
|
|
4028
4067
|
alignment: string | null | undefined;
|
|
4029
4068
|
static: boolean | null | undefined;
|
|
4069
|
+
graded?: boolean | null;
|
|
4030
4070
|
problemNum: number | null | undefined;
|
|
4031
4071
|
apiOptions: Readonly<Readonly<{
|
|
4032
4072
|
isArticle?: boolean;
|
|
@@ -4060,7 +4100,7 @@ declare const InteractiveGraph: {
|
|
|
4060
4100
|
hintProgressColor?: string;
|
|
4061
4101
|
canScrollPage?: boolean;
|
|
4062
4102
|
editorChangeDelay?: number;
|
|
4063
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4103
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4064
4104
|
}> & {
|
|
4065
4105
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4066
4106
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4111,6 +4151,7 @@ declare const InteractiveGraph: {
|
|
|
4111
4151
|
widgetIndex: number;
|
|
4112
4152
|
alignment: string | null | undefined;
|
|
4113
4153
|
static: boolean | null | undefined;
|
|
4154
|
+
graded?: boolean | null;
|
|
4114
4155
|
problemNum: number | null | undefined;
|
|
4115
4156
|
apiOptions: Readonly<Readonly<{
|
|
4116
4157
|
isArticle?: boolean;
|
|
@@ -4144,7 +4185,7 @@ declare const InteractiveGraph: {
|
|
|
4144
4185
|
hintProgressColor?: string;
|
|
4145
4186
|
canScrollPage?: boolean;
|
|
4146
4187
|
editorChangeDelay?: number;
|
|
4147
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4188
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4148
4189
|
}> & {
|
|
4149
4190
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4150
4191
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4195,6 +4236,7 @@ declare const InteractiveGraph: {
|
|
|
4195
4236
|
widgetIndex: number;
|
|
4196
4237
|
alignment: string | null | undefined;
|
|
4197
4238
|
static: boolean | null | undefined;
|
|
4239
|
+
graded?: boolean | null;
|
|
4198
4240
|
problemNum: number | null | undefined;
|
|
4199
4241
|
apiOptions: Readonly<Readonly<{
|
|
4200
4242
|
isArticle?: boolean;
|
|
@@ -4228,7 +4270,7 @@ declare const InteractiveGraph: {
|
|
|
4228
4270
|
hintProgressColor?: string;
|
|
4229
4271
|
canScrollPage?: boolean;
|
|
4230
4272
|
editorChangeDelay?: number;
|
|
4231
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4273
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4232
4274
|
}> & {
|
|
4233
4275
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4234
4276
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4279,6 +4321,7 @@ declare const InteractiveGraph: {
|
|
|
4279
4321
|
widgetIndex: number;
|
|
4280
4322
|
alignment: string | null | undefined;
|
|
4281
4323
|
static: boolean | null | undefined;
|
|
4324
|
+
graded?: boolean | null;
|
|
4282
4325
|
problemNum: number | null | undefined;
|
|
4283
4326
|
apiOptions: Readonly<Readonly<{
|
|
4284
4327
|
isArticle?: boolean;
|
|
@@ -4312,7 +4355,7 @@ declare const InteractiveGraph: {
|
|
|
4312
4355
|
hintProgressColor?: string;
|
|
4313
4356
|
canScrollPage?: boolean;
|
|
4314
4357
|
editorChangeDelay?: number;
|
|
4315
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4358
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4316
4359
|
}> & {
|
|
4317
4360
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4318
4361
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4363,6 +4406,7 @@ declare const InteractiveGraph: {
|
|
|
4363
4406
|
widgetIndex: number;
|
|
4364
4407
|
alignment: string | null | undefined;
|
|
4365
4408
|
static: boolean | null | undefined;
|
|
4409
|
+
graded?: boolean | null;
|
|
4366
4410
|
problemNum: number | null | undefined;
|
|
4367
4411
|
apiOptions: Readonly<Readonly<{
|
|
4368
4412
|
isArticle?: boolean;
|
|
@@ -4396,7 +4440,7 @@ declare const InteractiveGraph: {
|
|
|
4396
4440
|
hintProgressColor?: string;
|
|
4397
4441
|
canScrollPage?: boolean;
|
|
4398
4442
|
editorChangeDelay?: number;
|
|
4399
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4443
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4400
4444
|
}> & {
|
|
4401
4445
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4402
4446
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4447,6 +4491,7 @@ declare const InteractiveGraph: {
|
|
|
4447
4491
|
widgetIndex: number;
|
|
4448
4492
|
alignment: string | null | undefined;
|
|
4449
4493
|
static: boolean | null | undefined;
|
|
4494
|
+
graded?: boolean | null;
|
|
4450
4495
|
problemNum: number | null | undefined;
|
|
4451
4496
|
apiOptions: Readonly<Readonly<{
|
|
4452
4497
|
isArticle?: boolean;
|
|
@@ -4480,7 +4525,7 @@ declare const InteractiveGraph: {
|
|
|
4480
4525
|
hintProgressColor?: string;
|
|
4481
4526
|
canScrollPage?: boolean;
|
|
4482
4527
|
editorChangeDelay?: number;
|
|
4483
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4528
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4484
4529
|
}> & {
|
|
4485
4530
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4486
4531
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4531,6 +4576,7 @@ declare const InteractiveGraph: {
|
|
|
4531
4576
|
widgetIndex: number;
|
|
4532
4577
|
alignment: string | null | undefined;
|
|
4533
4578
|
static: boolean | null | undefined;
|
|
4579
|
+
graded?: boolean | null;
|
|
4534
4580
|
problemNum: number | null | undefined;
|
|
4535
4581
|
apiOptions: Readonly<Readonly<{
|
|
4536
4582
|
isArticle?: boolean;
|
|
@@ -4564,7 +4610,7 @@ declare const InteractiveGraph: {
|
|
|
4564
4610
|
hintProgressColor?: string;
|
|
4565
4611
|
canScrollPage?: boolean;
|
|
4566
4612
|
editorChangeDelay?: number;
|
|
4567
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4613
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4568
4614
|
}> & {
|
|
4569
4615
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4570
4616
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4615,6 +4661,7 @@ declare const InteractiveGraph: {
|
|
|
4615
4661
|
widgetIndex: number;
|
|
4616
4662
|
alignment: string | null | undefined;
|
|
4617
4663
|
static: boolean | null | undefined;
|
|
4664
|
+
graded?: boolean | null;
|
|
4618
4665
|
problemNum: number | null | undefined;
|
|
4619
4666
|
apiOptions: Readonly<Readonly<{
|
|
4620
4667
|
isArticle?: boolean;
|
|
@@ -4648,7 +4695,7 @@ declare const InteractiveGraph: {
|
|
|
4648
4695
|
hintProgressColor?: string;
|
|
4649
4696
|
canScrollPage?: boolean;
|
|
4650
4697
|
editorChangeDelay?: number;
|
|
4651
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4698
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4652
4699
|
}> & {
|
|
4653
4700
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4654
4701
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4699,6 +4746,7 @@ declare const InteractiveGraph: {
|
|
|
4699
4746
|
widgetIndex: number;
|
|
4700
4747
|
alignment: string | null | undefined;
|
|
4701
4748
|
static: boolean | null | undefined;
|
|
4749
|
+
graded?: boolean | null;
|
|
4702
4750
|
problemNum: number | null | undefined;
|
|
4703
4751
|
apiOptions: Readonly<Readonly<{
|
|
4704
4752
|
isArticle?: boolean;
|
|
@@ -4732,7 +4780,7 @@ declare const InteractiveGraph: {
|
|
|
4732
4780
|
hintProgressColor?: string;
|
|
4733
4781
|
canScrollPage?: boolean;
|
|
4734
4782
|
editorChangeDelay?: number;
|
|
4735
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4783
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4736
4784
|
}> & {
|
|
4737
4785
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4738
4786
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4783,6 +4831,7 @@ declare const InteractiveGraph: {
|
|
|
4783
4831
|
widgetIndex: number;
|
|
4784
4832
|
alignment: string | null | undefined;
|
|
4785
4833
|
static: boolean | null | undefined;
|
|
4834
|
+
graded?: boolean | null;
|
|
4786
4835
|
problemNum: number | null | undefined;
|
|
4787
4836
|
apiOptions: Readonly<Readonly<{
|
|
4788
4837
|
isArticle?: boolean;
|
|
@@ -4816,7 +4865,7 @@ declare const InteractiveGraph: {
|
|
|
4816
4865
|
hintProgressColor?: string;
|
|
4817
4866
|
canScrollPage?: boolean;
|
|
4818
4867
|
editorChangeDelay?: number;
|
|
4819
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4868
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4820
4869
|
}> & {
|
|
4821
4870
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4822
4871
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4867,6 +4916,7 @@ declare const InteractiveGraph: {
|
|
|
4867
4916
|
widgetIndex: number;
|
|
4868
4917
|
alignment: string | null | undefined;
|
|
4869
4918
|
static: boolean | null | undefined;
|
|
4919
|
+
graded?: boolean | null;
|
|
4870
4920
|
problemNum: number | null | undefined;
|
|
4871
4921
|
apiOptions: Readonly<Readonly<{
|
|
4872
4922
|
isArticle?: boolean;
|
|
@@ -4900,7 +4950,7 @@ declare const InteractiveGraph: {
|
|
|
4900
4950
|
hintProgressColor?: string;
|
|
4901
4951
|
canScrollPage?: boolean;
|
|
4902
4952
|
editorChangeDelay?: number;
|
|
4903
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4953
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4904
4954
|
}> & {
|
|
4905
4955
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4906
4956
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -4951,6 +5001,7 @@ declare const InteractiveGraph: {
|
|
|
4951
5001
|
widgetIndex: number;
|
|
4952
5002
|
alignment: string | null | undefined;
|
|
4953
5003
|
static: boolean | null | undefined;
|
|
5004
|
+
graded?: boolean | null;
|
|
4954
5005
|
problemNum: number | null | undefined;
|
|
4955
5006
|
apiOptions: Readonly<Readonly<{
|
|
4956
5007
|
isArticle?: boolean;
|
|
@@ -4984,7 +5035,7 @@ declare const InteractiveGraph: {
|
|
|
4984
5035
|
hintProgressColor?: string;
|
|
4985
5036
|
canScrollPage?: boolean;
|
|
4986
5037
|
editorChangeDelay?: number;
|
|
4987
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
5038
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
4988
5039
|
}> & {
|
|
4989
5040
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4990
5041
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -5035,6 +5086,7 @@ declare const InteractiveGraph: {
|
|
|
5035
5086
|
widgetIndex: number;
|
|
5036
5087
|
alignment: string | null | undefined;
|
|
5037
5088
|
static: boolean | null | undefined;
|
|
5089
|
+
graded?: boolean | null;
|
|
5038
5090
|
problemNum: number | null | undefined;
|
|
5039
5091
|
apiOptions: Readonly<Readonly<{
|
|
5040
5092
|
isArticle?: boolean;
|
|
@@ -5068,7 +5120,7 @@ declare const InteractiveGraph: {
|
|
|
5068
5120
|
hintProgressColor?: string;
|
|
5069
5121
|
canScrollPage?: boolean;
|
|
5070
5122
|
editorChangeDelay?: number;
|
|
5071
|
-
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
5123
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector" | "interactive-graph-not-scored", boolean>;
|
|
5072
5124
|
}> & {
|
|
5073
5125
|
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
5074
5126
|
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
@@ -5093,7 +5145,6 @@ declare const InteractiveGraph: {
|
|
|
5093
5145
|
linterContext: import("@khanacademy/perseus-linter").LinterContextProps;
|
|
5094
5146
|
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
5095
5147
|
}): string;
|
|
5096
|
-
contextType?: React.Context<any> | undefined;
|
|
5097
5148
|
};
|
|
5098
5149
|
type InteractiveGraphProps = PropsFor<typeof InteractiveGraph>;
|
|
5099
5150
|
type Range = [min: number, max: number];
|
|
@@ -5184,6 +5235,10 @@ export type Props = {
|
|
|
5184
5235
|
graph: InteractiveGraphProps["userInput"];
|
|
5185
5236
|
onChange: (props: Partial<Props>) => void;
|
|
5186
5237
|
static?: boolean;
|
|
5238
|
+
/**
|
|
5239
|
+
* Whether this widget is graded.
|
|
5240
|
+
*/
|
|
5241
|
+
graded?: boolean;
|
|
5187
5242
|
};
|
|
5188
5243
|
/**
|
|
5189
5244
|
* An editor for the InteractiveGraph widget, which allows the user to
|
|
@@ -5193,6 +5248,10 @@ export type Props = {
|
|
|
5193
5248
|
*/
|
|
5194
5249
|
declare class InteractiveGraphEditor extends React.Component<Props> {
|
|
5195
5250
|
static widgetName: string;
|
|
5251
|
+
static bestPractices: {
|
|
5252
|
+
url: string;
|
|
5253
|
+
label: string;
|
|
5254
|
+
};
|
|
5196
5255
|
displayName: string;
|
|
5197
5256
|
className: string;
|
|
5198
5257
|
static defaultProps: InteractiveGraphDefaultWidgetOptions & {
|