@khanacademy/perseus-editor 14.11.0 → 14.11.2

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.
@@ -9,6 +9,9 @@ declare const InteractiveGraph: {
9
9
  problemNum: number | null | undefined;
10
10
  apiOptions: Readonly<Readonly<{
11
11
  isArticle?: boolean | undefined;
12
+ /**
13
+ * The graph to display in the graph area.
14
+ */
12
15
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
13
16
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
14
17
  showAlignmentOptions?: boolean | undefined;
@@ -126,6 +129,9 @@ declare const InteractiveGraph: {
126
129
  problemNum: number | null | undefined;
127
130
  apiOptions: Readonly<Readonly<{
128
131
  isArticle?: boolean | undefined;
132
+ /**
133
+ * The graph to display in the graph area.
134
+ */
129
135
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
130
136
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
131
137
  showAlignmentOptions?: boolean | undefined;
@@ -220,6 +226,9 @@ declare const InteractiveGraph: {
220
226
  problemNum: number | null | undefined;
221
227
  apiOptions: Readonly<Readonly<{
222
228
  isArticle?: boolean | undefined;
229
+ /**
230
+ * The graph to display in the graph area.
231
+ */
223
232
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
224
233
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
225
234
  showAlignmentOptions?: boolean | undefined;
@@ -314,6 +323,9 @@ declare const InteractiveGraph: {
314
323
  problemNum: number | null | undefined;
315
324
  apiOptions: Readonly<Readonly<{
316
325
  isArticle?: boolean | undefined;
326
+ /**
327
+ * The graph to display in the graph area.
328
+ */
317
329
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
318
330
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
319
331
  showAlignmentOptions?: boolean | undefined;
@@ -404,10 +416,7 @@ declare const InteractiveGraph: {
404
416
  setGraphie: (arg1: any) => void;
405
417
  handleAddPointsMouseDown: (arg1: import("@khanacademy/perseus").Coord) => void;
406
418
  resetGraphie: () => void;
407
- setupGraphie: () => void; /**
408
- * How far apart the tick marks on the axes are in the x and y
409
- * directions.
410
- */
419
+ setupGraphie: () => void;
411
420
  showHairlines: (arg1: import("@khanacademy/perseus").Coord) => void;
412
421
  hideHairlines: () => void;
413
422
  setTrashCanVisibility: (arg1: number) => void;
@@ -418,6 +427,9 @@ declare const InteractiveGraph: {
418
427
  problemNum: number | null | undefined;
419
428
  apiOptions: Readonly<Readonly<{
420
429
  isArticle?: boolean | undefined;
430
+ /**
431
+ * The graph to display in the graph area.
432
+ */
421
433
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
422
434
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
423
435
  showAlignmentOptions?: boolean | undefined;
@@ -505,6 +517,10 @@ declare const InteractiveGraph: {
505
517
  linterContext: import("@khanacademy/perseus-linter").LinterContextProps;
506
518
  containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
507
519
  }) | null | undefined) => boolean;
520
+ /**
521
+ * An error message to display in the graph area, or true if the
522
+ * graph is valid.
523
+ */
508
524
  areAngleGraphsEqual(prevGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypeAngle, currentGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypeAngle): boolean;
509
525
  arePointGraphsEqual(prevGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePoint, currentGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePoint): boolean;
510
526
  arePolygonGraphsEqual(prevGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePolygon, currentGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePolygon): boolean;
@@ -536,11 +552,7 @@ declare const InteractiveGraph: {
536
552
  clearCoords: () => void;
537
553
  onChange: import("@khanacademy/perseus").ChangeHandler;
538
554
  addPointControls: () => void;
539
- removePointControls: () => void; /**
540
- * The locked figures to display in the graph area.
541
- * Locked figures are graph elements (points, lines, line segmeents,
542
- * etc.) that are locked in place and not interactive.
543
- */
555
+ removePointControls: () => void;
544
556
  addSegmentControls: () => void;
545
557
  removeSegmentControls: () => void;
546
558
  addRayControls: () => void;
@@ -552,6 +564,9 @@ declare const InteractiveGraph: {
552
564
  removeAngleControls: () => void;
553
565
  toggleShowSides: () => void;
554
566
  getUserInput(): PerseusGraphType;
567
+ /**
568
+ * The graph to display in the graph area.
569
+ */
555
570
  focus: () => void;
556
571
  render(): React.ReactNode;
557
572
  setState<K extends string | number | symbol>(state: any, callback?: (() => void) | undefined): void;
@@ -563,6 +578,9 @@ declare const InteractiveGraph: {
563
578
  problemNum: number | null | undefined;
564
579
  apiOptions: Readonly<Readonly<{
565
580
  isArticle?: boolean | undefined;
581
+ /**
582
+ * The graph to display in the graph area.
583
+ */
566
584
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
567
585
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
568
586
  showAlignmentOptions?: boolean | undefined;
@@ -660,6 +678,9 @@ declare const InteractiveGraph: {
660
678
  problemNum: number | null | undefined;
661
679
  apiOptions: Readonly<Readonly<{
662
680
  isArticle?: boolean | undefined;
681
+ /**
682
+ * The graph to display in the graph area.
683
+ */
663
684
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
664
685
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
665
686
  showAlignmentOptions?: boolean | undefined;
@@ -756,6 +777,9 @@ declare const InteractiveGraph: {
756
777
  problemNum: number | null | undefined;
757
778
  apiOptions: Readonly<Readonly<{
758
779
  isArticle?: boolean | undefined;
780
+ /**
781
+ * The graph to display in the graph area.
782
+ */
759
783
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
760
784
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
761
785
  showAlignmentOptions?: boolean | undefined;
@@ -852,6 +876,9 @@ declare const InteractiveGraph: {
852
876
  problemNum: number | null | undefined;
853
877
  apiOptions: Readonly<Readonly<{
854
878
  isArticle?: boolean | undefined;
879
+ /**
880
+ * The graph to display in the graph area.
881
+ */
855
882
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
856
883
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
857
884
  showAlignmentOptions?: boolean | undefined;
@@ -946,6 +973,9 @@ declare const InteractiveGraph: {
946
973
  problemNum: number | null | undefined;
947
974
  apiOptions: Readonly<Readonly<{
948
975
  isArticle?: boolean | undefined;
976
+ /**
977
+ * The graph to display in the graph area.
978
+ */
949
979
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
950
980
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
951
981
  showAlignmentOptions?: boolean | undefined;
@@ -1040,6 +1070,9 @@ declare const InteractiveGraph: {
1040
1070
  problemNum: number | null | undefined;
1041
1071
  apiOptions: Readonly<Readonly<{
1042
1072
  isArticle?: boolean | undefined;
1073
+ /**
1074
+ * The graph to display in the graph area.
1075
+ */
1043
1076
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1044
1077
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1045
1078
  showAlignmentOptions?: boolean | undefined;
@@ -1130,6 +1163,7 @@ declare const InteractiveGraph: {
1130
1163
  }>;
1131
1164
  mafsRef: React.RefObject<import("../../../../perseus/src/widgets/interactive-graphs/stateful-mafs-graph").StatefulMafsGraphType>;
1132
1165
  getUserInput(): PerseusGraphType;
1166
+ getPromptJSON(): import("../../../../perseus/src/widget-ai-utils/unsupported-widget").UnsupportedWidgetPromptJSON | import("../../../../perseus/src/widget-ai-utils/interactive-graph/prompt-utils").InteractiveGraphPromptJSON;
1133
1167
  render(): React.JSX.Element;
1134
1168
  context: unknown;
1135
1169
  setState<K_1 extends string | number | symbol>(state: any, callback?: (() => void) | undefined): void;
@@ -1141,6 +1175,9 @@ declare const InteractiveGraph: {
1141
1175
  problemNum: number | null | undefined;
1142
1176
  apiOptions: Readonly<Readonly<{
1143
1177
  isArticle?: boolean | undefined;
1178
+ /**
1179
+ * The graph to display in the graph area.
1180
+ */
1144
1181
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1145
1182
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1146
1183
  showAlignmentOptions?: boolean | undefined;
@@ -1240,6 +1277,9 @@ declare const InteractiveGraph: {
1240
1277
  problemNum: number | null | undefined;
1241
1278
  apiOptions: Readonly<Readonly<{
1242
1279
  isArticle?: boolean | undefined;
1280
+ /**
1281
+ * The graph to display in the graph area.
1282
+ */
1243
1283
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1244
1284
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1245
1285
  showAlignmentOptions?: boolean | undefined;
@@ -1336,6 +1376,9 @@ declare const InteractiveGraph: {
1336
1376
  problemNum: number | null | undefined;
1337
1377
  apiOptions: Readonly<Readonly<{
1338
1378
  isArticle?: boolean | undefined;
1379
+ /**
1380
+ * The graph to display in the graph area.
1381
+ */
1339
1382
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1340
1383
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1341
1384
  showAlignmentOptions?: boolean | undefined;
@@ -1430,6 +1473,9 @@ declare const InteractiveGraph: {
1430
1473
  problemNum: number | null | undefined;
1431
1474
  apiOptions: Readonly<Readonly<{
1432
1475
  isArticle?: boolean | undefined;
1476
+ /**
1477
+ * The graph to display in the graph area.
1478
+ */
1433
1479
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1434
1480
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1435
1481
  showAlignmentOptions?: boolean | undefined;
@@ -1526,6 +1572,9 @@ declare const InteractiveGraph: {
1526
1572
  problemNum: number | null | undefined;
1527
1573
  apiOptions: Readonly<Readonly<{
1528
1574
  isArticle?: boolean | undefined;
1575
+ /**
1576
+ * The graph to display in the graph area.
1577
+ */
1529
1578
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1530
1579
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1531
1580
  showAlignmentOptions?: boolean | undefined;
@@ -1620,6 +1669,9 @@ declare const InteractiveGraph: {
1620
1669
  problemNum: number | null | undefined;
1621
1670
  apiOptions: Readonly<Readonly<{
1622
1671
  isArticle?: boolean | undefined;
1672
+ /**
1673
+ * The graph to display in the graph area.
1674
+ */
1623
1675
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1624
1676
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1625
1677
  showAlignmentOptions?: boolean | undefined;
@@ -1714,6 +1766,9 @@ declare const InteractiveGraph: {
1714
1766
  problemNum: number | null | undefined;
1715
1767
  apiOptions: Readonly<Readonly<{
1716
1768
  isArticle?: boolean | undefined;
1769
+ /**
1770
+ * The graph to display in the graph area.
1771
+ */
1717
1772
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1718
1773
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1719
1774
  showAlignmentOptions?: boolean | undefined;
@@ -1808,6 +1863,9 @@ declare const InteractiveGraph: {
1808
1863
  problemNum: number | null | undefined;
1809
1864
  apiOptions: Readonly<Readonly<{
1810
1865
  isArticle?: boolean | undefined;
1866
+ /**
1867
+ * The graph to display in the graph area.
1868
+ */
1811
1869
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1812
1870
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1813
1871
  showAlignmentOptions?: boolean | undefined;
@@ -1903,6 +1961,9 @@ declare const InteractiveGraph: {
1903
1961
  problemNum: number | null | undefined;
1904
1962
  apiOptions: Readonly<Readonly<{
1905
1963
  isArticle?: boolean | undefined;
1964
+ /**
1965
+ * The graph to display in the graph area.
1966
+ */
1906
1967
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
1907
1968
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
1908
1969
  showAlignmentOptions?: boolean | undefined;
@@ -2020,6 +2081,9 @@ declare const InteractiveGraph: {
2020
2081
  problemNum: number | null | undefined;
2021
2082
  apiOptions: Readonly<Readonly<{
2022
2083
  isArticle?: boolean | undefined;
2084
+ /**
2085
+ * The graph to display in the graph area.
2086
+ */
2023
2087
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2024
2088
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2025
2089
  showAlignmentOptions?: boolean | undefined;
@@ -2114,6 +2178,9 @@ declare const InteractiveGraph: {
2114
2178
  problemNum: number | null | undefined;
2115
2179
  apiOptions: Readonly<Readonly<{
2116
2180
  isArticle?: boolean | undefined;
2181
+ /**
2182
+ * The graph to display in the graph area.
2183
+ */
2117
2184
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2118
2185
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2119
2186
  showAlignmentOptions?: boolean | undefined;
@@ -2208,6 +2275,9 @@ declare const InteractiveGraph: {
2208
2275
  problemNum: number | null | undefined;
2209
2276
  apiOptions: Readonly<Readonly<{
2210
2277
  isArticle?: boolean | undefined;
2278
+ /**
2279
+ * The graph to display in the graph area.
2280
+ */
2211
2281
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2212
2282
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2213
2283
  showAlignmentOptions?: boolean | undefined;
@@ -2298,10 +2368,7 @@ declare const InteractiveGraph: {
2298
2368
  setGraphie: (arg1: any) => void;
2299
2369
  handleAddPointsMouseDown: (arg1: import("@khanacademy/perseus").Coord) => void;
2300
2370
  resetGraphie: () => void;
2301
- setupGraphie: () => void; /**
2302
- * How far apart the tick marks on the axes are in the x and y
2303
- * directions.
2304
- */
2371
+ setupGraphie: () => void;
2305
2372
  showHairlines: (arg1: import("@khanacademy/perseus").Coord) => void;
2306
2373
  hideHairlines: () => void;
2307
2374
  setTrashCanVisibility: (arg1: number) => void;
@@ -2312,6 +2379,9 @@ declare const InteractiveGraph: {
2312
2379
  problemNum: number | null | undefined;
2313
2380
  apiOptions: Readonly<Readonly<{
2314
2381
  isArticle?: boolean | undefined;
2382
+ /**
2383
+ * The graph to display in the graph area.
2384
+ */
2315
2385
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2316
2386
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2317
2387
  showAlignmentOptions?: boolean | undefined;
@@ -2399,6 +2469,10 @@ declare const InteractiveGraph: {
2399
2469
  linterContext: import("@khanacademy/perseus-linter").LinterContextProps;
2400
2470
  containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
2401
2471
  }) | null | undefined) => boolean;
2472
+ /**
2473
+ * An error message to display in the graph area, or true if the
2474
+ * graph is valid.
2475
+ */
2402
2476
  areAngleGraphsEqual(prevGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypeAngle, currentGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypeAngle): boolean;
2403
2477
  arePointGraphsEqual(prevGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePoint, currentGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePoint): boolean;
2404
2478
  arePolygonGraphsEqual(prevGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePolygon, currentGraph: import("../../../../perseus/src/perseus-types").PerseusGraphTypePolygon): boolean;
@@ -2430,11 +2504,7 @@ declare const InteractiveGraph: {
2430
2504
  clearCoords: () => void;
2431
2505
  onChange: import("@khanacademy/perseus").ChangeHandler;
2432
2506
  addPointControls: () => void;
2433
- removePointControls: () => void; /**
2434
- * The locked figures to display in the graph area.
2435
- * Locked figures are graph elements (points, lines, line segmeents,
2436
- * etc.) that are locked in place and not interactive.
2437
- */
2507
+ removePointControls: () => void;
2438
2508
  addSegmentControls: () => void;
2439
2509
  removeSegmentControls: () => void;
2440
2510
  addRayControls: () => void;
@@ -2446,6 +2516,9 @@ declare const InteractiveGraph: {
2446
2516
  removeAngleControls: () => void;
2447
2517
  toggleShowSides: () => void;
2448
2518
  getUserInput(): PerseusGraphType;
2519
+ /**
2520
+ * The graph to display in the graph area.
2521
+ */
2449
2522
  focus: () => void;
2450
2523
  render(): React.ReactNode;
2451
2524
  setState<K extends string | number | symbol>(state: any, callback?: (() => void) | undefined): void;
@@ -2457,6 +2530,9 @@ declare const InteractiveGraph: {
2457
2530
  problemNum: number | null | undefined;
2458
2531
  apiOptions: Readonly<Readonly<{
2459
2532
  isArticle?: boolean | undefined;
2533
+ /**
2534
+ * The graph to display in the graph area.
2535
+ */
2460
2536
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2461
2537
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2462
2538
  showAlignmentOptions?: boolean | undefined;
@@ -2554,6 +2630,9 @@ declare const InteractiveGraph: {
2554
2630
  problemNum: number | null | undefined;
2555
2631
  apiOptions: Readonly<Readonly<{
2556
2632
  isArticle?: boolean | undefined;
2633
+ /**
2634
+ * The graph to display in the graph area.
2635
+ */
2557
2636
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2558
2637
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2559
2638
  showAlignmentOptions?: boolean | undefined;
@@ -2650,6 +2729,9 @@ declare const InteractiveGraph: {
2650
2729
  problemNum: number | null | undefined;
2651
2730
  apiOptions: Readonly<Readonly<{
2652
2731
  isArticle?: boolean | undefined;
2732
+ /**
2733
+ * The graph to display in the graph area.
2734
+ */
2653
2735
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2654
2736
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2655
2737
  showAlignmentOptions?: boolean | undefined;
@@ -2746,6 +2828,9 @@ declare const InteractiveGraph: {
2746
2828
  problemNum: number | null | undefined;
2747
2829
  apiOptions: Readonly<Readonly<{
2748
2830
  isArticle?: boolean | undefined;
2831
+ /**
2832
+ * The graph to display in the graph area.
2833
+ */
2749
2834
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2750
2835
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2751
2836
  showAlignmentOptions?: boolean | undefined;
@@ -2840,6 +2925,9 @@ declare const InteractiveGraph: {
2840
2925
  problemNum: number | null | undefined;
2841
2926
  apiOptions: Readonly<Readonly<{
2842
2927
  isArticle?: boolean | undefined;
2928
+ /**
2929
+ * The graph to display in the graph area.
2930
+ */
2843
2931
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2844
2932
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2845
2933
  showAlignmentOptions?: boolean | undefined;
@@ -2934,6 +3022,9 @@ declare const InteractiveGraph: {
2934
3022
  problemNum: number | null | undefined;
2935
3023
  apiOptions: Readonly<Readonly<{
2936
3024
  isArticle?: boolean | undefined;
3025
+ /**
3026
+ * The graph to display in the graph area.
3027
+ */
2937
3028
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
2938
3029
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
2939
3030
  showAlignmentOptions?: boolean | undefined;
@@ -3024,6 +3115,7 @@ declare const InteractiveGraph: {
3024
3115
  }>;
3025
3116
  mafsRef: React.RefObject<import("../../../../perseus/src/widgets/interactive-graphs/stateful-mafs-graph").StatefulMafsGraphType>;
3026
3117
  getUserInput(): PerseusGraphType;
3118
+ getPromptJSON(): import("../../../../perseus/src/widget-ai-utils/unsupported-widget").UnsupportedWidgetPromptJSON | import("../../../../perseus/src/widget-ai-utils/interactive-graph/prompt-utils").InteractiveGraphPromptJSON;
3027
3119
  render(): React.JSX.Element;
3028
3120
  context: unknown;
3029
3121
  setState<K_1 extends string | number | symbol>(state: any, callback?: (() => void) | undefined): void;
@@ -3035,6 +3127,9 @@ declare const InteractiveGraph: {
3035
3127
  problemNum: number | null | undefined;
3036
3128
  apiOptions: Readonly<Readonly<{
3037
3129
  isArticle?: boolean | undefined;
3130
+ /**
3131
+ * The graph to display in the graph area.
3132
+ */
3038
3133
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3039
3134
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3040
3135
  showAlignmentOptions?: boolean | undefined;
@@ -3134,6 +3229,9 @@ declare const InteractiveGraph: {
3134
3229
  problemNum: number | null | undefined;
3135
3230
  apiOptions: Readonly<Readonly<{
3136
3231
  isArticle?: boolean | undefined;
3232
+ /**
3233
+ * The graph to display in the graph area.
3234
+ */
3137
3235
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3138
3236
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3139
3237
  showAlignmentOptions?: boolean | undefined;
@@ -3230,6 +3328,9 @@ declare const InteractiveGraph: {
3230
3328
  problemNum: number | null | undefined;
3231
3329
  apiOptions: Readonly<Readonly<{
3232
3330
  isArticle?: boolean | undefined;
3331
+ /**
3332
+ * The graph to display in the graph area.
3333
+ */
3233
3334
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3234
3335
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3235
3336
  showAlignmentOptions?: boolean | undefined;
@@ -3324,6 +3425,9 @@ declare const InteractiveGraph: {
3324
3425
  problemNum: number | null | undefined;
3325
3426
  apiOptions: Readonly<Readonly<{
3326
3427
  isArticle?: boolean | undefined;
3428
+ /**
3429
+ * The graph to display in the graph area.
3430
+ */
3327
3431
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3328
3432
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3329
3433
  showAlignmentOptions?: boolean | undefined;
@@ -3420,6 +3524,9 @@ declare const InteractiveGraph: {
3420
3524
  problemNum: number | null | undefined;
3421
3525
  apiOptions: Readonly<Readonly<{
3422
3526
  isArticle?: boolean | undefined;
3527
+ /**
3528
+ * The graph to display in the graph area.
3529
+ */
3423
3530
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3424
3531
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3425
3532
  showAlignmentOptions?: boolean | undefined;
@@ -3514,6 +3621,9 @@ declare const InteractiveGraph: {
3514
3621
  problemNum: number | null | undefined;
3515
3622
  apiOptions: Readonly<Readonly<{
3516
3623
  isArticle?: boolean | undefined;
3624
+ /**
3625
+ * The graph to display in the graph area.
3626
+ */
3517
3627
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3518
3628
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3519
3629
  showAlignmentOptions?: boolean | undefined;
@@ -3608,6 +3718,9 @@ declare const InteractiveGraph: {
3608
3718
  problemNum: number | null | undefined;
3609
3719
  apiOptions: Readonly<Readonly<{
3610
3720
  isArticle?: boolean | undefined;
3721
+ /**
3722
+ * The graph to display in the graph area.
3723
+ */
3611
3724
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3612
3725
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3613
3726
  showAlignmentOptions?: boolean | undefined;
@@ -3702,6 +3815,9 @@ declare const InteractiveGraph: {
3702
3815
  problemNum: number | null | undefined;
3703
3816
  apiOptions: Readonly<Readonly<{
3704
3817
  isArticle?: boolean | undefined;
3818
+ /**
3819
+ * The graph to display in the graph area.
3820
+ */
3705
3821
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3706
3822
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3707
3823
  showAlignmentOptions?: boolean | undefined;
@@ -3807,6 +3923,9 @@ declare const InteractiveGraph: {
3807
3923
  problemNum: number | null | undefined;
3808
3924
  apiOptions: Readonly<Readonly<{
3809
3925
  isArticle?: boolean | undefined;
3926
+ /**
3927
+ * The graph to display in the graph area.
3928
+ */
3810
3929
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3811
3930
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3812
3931
  showAlignmentOptions?: boolean | undefined;
@@ -3901,6 +4020,9 @@ declare const InteractiveGraph: {
3901
4020
  problemNum: number | null | undefined;
3902
4021
  apiOptions: Readonly<Readonly<{
3903
4022
  isArticle?: boolean | undefined;
4023
+ /**
4024
+ * The graph to display in the graph area.
4025
+ */
3904
4026
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3905
4027
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
3906
4028
  showAlignmentOptions?: boolean | undefined;
@@ -3995,6 +4117,9 @@ declare const InteractiveGraph: {
3995
4117
  problemNum: number | null | undefined;
3996
4118
  apiOptions: Readonly<Readonly<{
3997
4119
  isArticle?: boolean | undefined;
4120
+ /**
4121
+ * The graph to display in the graph area.
4122
+ */
3998
4123
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
3999
4124
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4000
4125
  showAlignmentOptions?: boolean | undefined;
@@ -4089,6 +4214,9 @@ declare const InteractiveGraph: {
4089
4214
  problemNum: number | null | undefined;
4090
4215
  apiOptions: Readonly<Readonly<{
4091
4216
  isArticle?: boolean | undefined;
4217
+ /**
4218
+ * The graph to display in the graph area.
4219
+ */
4092
4220
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4093
4221
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4094
4222
  showAlignmentOptions?: boolean | undefined;
@@ -4183,6 +4311,9 @@ declare const InteractiveGraph: {
4183
4311
  problemNum: number | null | undefined;
4184
4312
  apiOptions: Readonly<Readonly<{
4185
4313
  isArticle?: boolean | undefined;
4314
+ /**
4315
+ * The graph to display in the graph area.
4316
+ */
4186
4317
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4187
4318
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4188
4319
  showAlignmentOptions?: boolean | undefined;
@@ -4277,6 +4408,9 @@ declare const InteractiveGraph: {
4277
4408
  problemNum: number | null | undefined;
4278
4409
  apiOptions: Readonly<Readonly<{
4279
4410
  isArticle?: boolean | undefined;
4411
+ /**
4412
+ * The graph to display in the graph area.
4413
+ */
4280
4414
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4281
4415
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4282
4416
  showAlignmentOptions?: boolean | undefined;
@@ -4372,6 +4506,9 @@ declare const InteractiveGraph: {
4372
4506
  problemNum: number | null | undefined;
4373
4507
  apiOptions: Readonly<Readonly<{
4374
4508
  isArticle?: boolean | undefined;
4509
+ /**
4510
+ * The graph to display in the graph area.
4511
+ */
4375
4512
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4376
4513
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4377
4514
  showAlignmentOptions?: boolean | undefined;
@@ -4466,6 +4603,9 @@ declare const InteractiveGraph: {
4466
4603
  problemNum: number | null | undefined;
4467
4604
  apiOptions: Readonly<Readonly<{
4468
4605
  isArticle?: boolean | undefined;
4606
+ /**
4607
+ * The graph to display in the graph area.
4608
+ */
4469
4609
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4470
4610
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4471
4611
  showAlignmentOptions?: boolean | undefined;
@@ -4561,6 +4701,9 @@ declare const InteractiveGraph: {
4561
4701
  problemNum: number | null | undefined;
4562
4702
  apiOptions: Readonly<Readonly<{
4563
4703
  isArticle?: boolean | undefined;
4704
+ /**
4705
+ * The graph to display in the graph area.
4706
+ */
4564
4707
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4565
4708
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4566
4709
  showAlignmentOptions?: boolean | undefined;
@@ -4655,6 +4798,9 @@ declare const InteractiveGraph: {
4655
4798
  problemNum: number | null | undefined;
4656
4799
  apiOptions: Readonly<Readonly<{
4657
4800
  isArticle?: boolean | undefined;
4801
+ /**
4802
+ * The graph to display in the graph area.
4803
+ */
4658
4804
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4659
4805
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4660
4806
  showAlignmentOptions?: boolean | undefined;
@@ -4749,6 +4895,9 @@ declare const InteractiveGraph: {
4749
4895
  problemNum: number | null | undefined;
4750
4896
  apiOptions: Readonly<Readonly<{
4751
4897
  isArticle?: boolean | undefined;
4898
+ /**
4899
+ * The graph to display in the graph area.
4900
+ */
4752
4901
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4753
4902
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4754
4903
  showAlignmentOptions?: boolean | undefined;
@@ -4843,6 +4992,9 @@ declare const InteractiveGraph: {
4843
4992
  problemNum: number | null | undefined;
4844
4993
  apiOptions: Readonly<Readonly<{
4845
4994
  isArticle?: boolean | undefined;
4995
+ /**
4996
+ * The graph to display in the graph area.
4997
+ */
4846
4998
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4847
4999
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4848
5000
  showAlignmentOptions?: boolean | undefined;
@@ -4937,6 +5089,9 @@ declare const InteractiveGraph: {
4937
5089
  problemNum: number | null | undefined;
4938
5090
  apiOptions: Readonly<Readonly<{
4939
5091
  isArticle?: boolean | undefined;
5092
+ /**
5093
+ * The graph to display in the graph area.
5094
+ */
4940
5095
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
4941
5096
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
4942
5097
  showAlignmentOptions?: boolean | undefined;
@@ -5031,6 +5186,9 @@ declare const InteractiveGraph: {
5031
5186
  problemNum: number | null | undefined;
5032
5187
  apiOptions: Readonly<Readonly<{
5033
5188
  isArticle?: boolean | undefined;
5189
+ /**
5190
+ * The graph to display in the graph area.
5191
+ */
5034
5192
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5035
5193
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5036
5194
  showAlignmentOptions?: boolean | undefined;
@@ -5125,6 +5283,9 @@ declare const InteractiveGraph: {
5125
5283
  problemNum: number | null | undefined;
5126
5284
  apiOptions: Readonly<Readonly<{
5127
5285
  isArticle?: boolean | undefined;
5286
+ /**
5287
+ * The graph to display in the graph area.
5288
+ */
5128
5289
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5129
5290
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5130
5291
  showAlignmentOptions?: boolean | undefined;
@@ -5219,6 +5380,9 @@ declare const InteractiveGraph: {
5219
5380
  problemNum: number | null | undefined;
5220
5381
  apiOptions: Readonly<Readonly<{
5221
5382
  isArticle?: boolean | undefined;
5383
+ /**
5384
+ * The graph to display in the graph area.
5385
+ */
5222
5386
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5223
5387
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5224
5388
  showAlignmentOptions?: boolean | undefined;
@@ -5313,6 +5477,9 @@ declare const InteractiveGraph: {
5313
5477
  problemNum: number | null | undefined;
5314
5478
  apiOptions: Readonly<Readonly<{
5315
5479
  isArticle?: boolean | undefined;
5480
+ /**
5481
+ * The graph to display in the graph area.
5482
+ */
5316
5483
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5317
5484
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5318
5485
  showAlignmentOptions?: boolean | undefined;
@@ -5407,6 +5574,9 @@ declare const InteractiveGraph: {
5407
5574
  problemNum: number | null | undefined;
5408
5575
  apiOptions: Readonly<Readonly<{
5409
5576
  isArticle?: boolean | undefined;
5577
+ /**
5578
+ * The graph to display in the graph area.
5579
+ */
5410
5580
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5411
5581
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5412
5582
  showAlignmentOptions?: boolean | undefined;
@@ -5501,6 +5671,9 @@ declare const InteractiveGraph: {
5501
5671
  problemNum: number | null | undefined;
5502
5672
  apiOptions: Readonly<Readonly<{
5503
5673
  isArticle?: boolean | undefined;
5674
+ /**
5675
+ * The graph to display in the graph area.
5676
+ */
5504
5677
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5505
5678
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5506
5679
  showAlignmentOptions?: boolean | undefined;
@@ -5595,6 +5768,9 @@ declare const InteractiveGraph: {
5595
5768
  problemNum: number | null | undefined;
5596
5769
  apiOptions: Readonly<Readonly<{
5597
5770
  isArticle?: boolean | undefined;
5771
+ /**
5772
+ * The graph to display in the graph area.
5773
+ */
5598
5774
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5599
5775
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5600
5776
  showAlignmentOptions?: boolean | undefined;
@@ -5689,6 +5865,9 @@ declare const InteractiveGraph: {
5689
5865
  problemNum: number | null | undefined;
5690
5866
  apiOptions: Readonly<Readonly<{
5691
5867
  isArticle?: boolean | undefined;
5868
+ /**
5869
+ * The graph to display in the graph area.
5870
+ */
5692
5871
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5693
5872
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5694
5873
  showAlignmentOptions?: boolean | undefined;
@@ -5783,6 +5962,9 @@ declare const InteractiveGraph: {
5783
5962
  problemNum: number | null | undefined;
5784
5963
  apiOptions: Readonly<Readonly<{
5785
5964
  isArticle?: boolean | undefined;
5965
+ /**
5966
+ * The graph to display in the graph area.
5967
+ */
5786
5968
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5787
5969
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5788
5970
  showAlignmentOptions?: boolean | undefined;
@@ -5877,6 +6059,9 @@ declare const InteractiveGraph: {
5877
6059
  problemNum: number | null | undefined;
5878
6060
  apiOptions: Readonly<Readonly<{
5879
6061
  isArticle?: boolean | undefined;
6062
+ /**
6063
+ * The graph to display in the graph area.
6064
+ */
5880
6065
  onFocusChange?: ((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number | undefined, focusedElement?: HTMLElement | undefined) => unknown) | undefined;
5881
6066
  GroupMetadataEditor?: React.ComponentType<any> | undefined;
5882
6067
  showAlignmentOptions?: boolean | undefined;