@khanacademy/perseus-editor 28.5.6 → 28.6.1

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.
@@ -36,6 +36,7 @@ declare const InteractiveGraph: {
36
36
  GroupMetadataEditor?: React.ComponentType<any>;
37
37
  showAlignmentOptions?: boolean;
38
38
  readOnly?: boolean;
39
+ editingDisabled?: boolean;
39
40
  answerableCallback?: (arg1: boolean) => unknown;
40
41
  getAnotherHint?: () => unknown;
41
42
  interactionCallback?: (widgetData: {
@@ -74,6 +75,7 @@ declare const InteractiveGraph: {
74
75
  isArticle: NonNullable<boolean | undefined>;
75
76
  isMobile: NonNullable<boolean | undefined>;
76
77
  isMobileApp: NonNullable<boolean | undefined>;
78
+ editingDisabled: NonNullable<boolean | undefined>;
77
79
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
78
80
  readOnly: NonNullable<boolean | undefined>;
79
81
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -126,6 +128,7 @@ declare const InteractiveGraph: {
126
128
  GroupMetadataEditor?: React.ComponentType<any>;
127
129
  showAlignmentOptions?: boolean;
128
130
  readOnly?: boolean;
131
+ editingDisabled?: boolean;
129
132
  answerableCallback?: (arg1: boolean) => unknown;
130
133
  getAnotherHint?: () => unknown;
131
134
  interactionCallback?: (widgetData: {
@@ -161,6 +164,7 @@ declare const InteractiveGraph: {
161
164
  GroupMetadataEditor?: React.ComponentType<any>;
162
165
  showAlignmentOptions?: boolean;
163
166
  readOnly?: boolean;
167
+ editingDisabled?: boolean;
164
168
  answerableCallback?: (arg1: boolean) => unknown;
165
169
  getAnotherHint?: () => unknown;
166
170
  interactionCallback?: (widgetData: {
@@ -196,6 +200,7 @@ declare const InteractiveGraph: {
196
200
  GroupMetadataEditor?: React.ComponentType<any>;
197
201
  showAlignmentOptions?: boolean;
198
202
  readOnly?: boolean;
203
+ editingDisabled?: boolean;
199
204
  answerableCallback?: (arg1: boolean) => unknown;
200
205
  getAnotherHint?: () => unknown;
201
206
  interactionCallback?: (widgetData: {
@@ -231,6 +236,7 @@ declare const InteractiveGraph: {
231
236
  GroupMetadataEditor?: React.ComponentType<any>;
232
237
  showAlignmentOptions?: boolean;
233
238
  readOnly?: boolean;
239
+ editingDisabled?: boolean;
234
240
  answerableCallback?: (arg1: boolean) => unknown;
235
241
  getAnotherHint?: () => unknown;
236
242
  interactionCallback?: (widgetData: {
@@ -266,6 +272,7 @@ declare const InteractiveGraph: {
266
272
  GroupMetadataEditor?: React.ComponentType<any>;
267
273
  showAlignmentOptions?: boolean;
268
274
  readOnly?: boolean;
275
+ editingDisabled?: boolean;
269
276
  answerableCallback?: (arg1: boolean) => unknown;
270
277
  getAnotherHint?: () => unknown;
271
278
  interactionCallback?: (widgetData: {
@@ -301,6 +308,7 @@ declare const InteractiveGraph: {
301
308
  GroupMetadataEditor?: React.ComponentType<any>;
302
309
  showAlignmentOptions?: boolean;
303
310
  readOnly?: boolean;
311
+ editingDisabled?: boolean;
304
312
  answerableCallback?: (arg1: boolean) => unknown;
305
313
  getAnotherHint?: () => unknown;
306
314
  interactionCallback?: (widgetData: {
@@ -336,6 +344,7 @@ declare const InteractiveGraph: {
336
344
  GroupMetadataEditor?: React.ComponentType<any>;
337
345
  showAlignmentOptions?: boolean;
338
346
  readOnly?: boolean;
347
+ editingDisabled?: boolean;
339
348
  answerableCallback?: (arg1: boolean) => unknown;
340
349
  getAnotherHint?: () => unknown;
341
350
  interactionCallback?: (widgetData: {
@@ -371,6 +380,7 @@ declare const InteractiveGraph: {
371
380
  GroupMetadataEditor?: React.ComponentType<any>;
372
381
  showAlignmentOptions?: boolean;
373
382
  readOnly?: boolean;
383
+ editingDisabled?: boolean;
374
384
  answerableCallback?: (arg1: boolean) => unknown;
375
385
  getAnotherHint?: () => unknown;
376
386
  interactionCallback?: (widgetData: {
@@ -400,12 +410,49 @@ declare const InteractiveGraph: {
400
410
  editorChangeDelay?: number;
401
411
  flags?: Record<"new-radio-widget" | "image-widget-upgrade", boolean>;
402
412
  }>["isMobileApp"]>;
413
+ editingDisabled: NonNullable<Readonly<{
414
+ isArticle?: boolean;
415
+ onFocusChange?: (newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown;
416
+ GroupMetadataEditor?: React.ComponentType<any>;
417
+ showAlignmentOptions?: boolean;
418
+ readOnly?: boolean;
419
+ editingDisabled?: boolean;
420
+ answerableCallback?: (arg1: boolean) => unknown;
421
+ getAnotherHint?: () => unknown;
422
+ interactionCallback?: (widgetData: {
423
+ [widgetId: string]: any;
424
+ }) => void;
425
+ groupAnnotator?: (groupNumber: number, widgetId: string) => React.ReactNode;
426
+ imagePlaceholder?: React.ReactNode;
427
+ widgetPlaceholder?: React.ReactNode;
428
+ baseElements?: {
429
+ Link: React.ComponentType<any>;
430
+ };
431
+ imagePreloader?: (dimensions: import("../../../../perseus/src/types").Dimensions) => React.ReactNode;
432
+ trackInteraction?: (args: {
433
+ type: string;
434
+ id: string;
435
+ correct?: boolean;
436
+ } & Partial<import("../../../../perseus/src/types").TrackingGradedGroupExtraArguments> & Partial<{
437
+ visible: number;
438
+ }>) => void;
439
+ customKeypad?: boolean;
440
+ nativeKeypadProxy?: (blur: () => void) => import("@khanacademy/math-input").KeypadAPI;
441
+ isMobile?: boolean;
442
+ isMobileApp?: boolean;
443
+ setDrawingAreaAvailable?: (arg1: boolean) => unknown;
444
+ hintProgressColor?: string;
445
+ canScrollPage?: boolean;
446
+ editorChangeDelay?: number;
447
+ flags?: Record<"new-radio-widget" | "image-widget-upgrade", boolean>;
448
+ }>["editingDisabled"]>;
403
449
  onFocusChange: NonNullable<Readonly<{
404
450
  isArticle?: boolean;
405
451
  onFocusChange?: (newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown;
406
452
  GroupMetadataEditor?: React.ComponentType<any>;
407
453
  showAlignmentOptions?: boolean;
408
454
  readOnly?: boolean;
455
+ editingDisabled?: boolean;
409
456
  answerableCallback?: (arg1: boolean) => unknown;
410
457
  getAnotherHint?: () => unknown;
411
458
  interactionCallback?: (widgetData: {
@@ -441,6 +488,7 @@ declare const InteractiveGraph: {
441
488
  GroupMetadataEditor?: React.ComponentType<any>;
442
489
  showAlignmentOptions?: boolean;
443
490
  readOnly?: boolean;
491
+ editingDisabled?: boolean;
444
492
  answerableCallback?: (arg1: boolean) => unknown;
445
493
  getAnotherHint?: () => unknown;
446
494
  interactionCallback?: (widgetData: {
@@ -476,6 +524,7 @@ declare const InteractiveGraph: {
476
524
  GroupMetadataEditor?: React.ComponentType<any>;
477
525
  showAlignmentOptions?: boolean;
478
526
  readOnly?: boolean;
527
+ editingDisabled?: boolean;
479
528
  answerableCallback?: (arg1: boolean) => unknown;
480
529
  getAnotherHint?: () => unknown;
481
530
  interactionCallback?: (widgetData: {
@@ -511,6 +560,7 @@ declare const InteractiveGraph: {
511
560
  GroupMetadataEditor?: React.ComponentType<any>;
512
561
  showAlignmentOptions?: boolean;
513
562
  readOnly?: boolean;
563
+ editingDisabled?: boolean;
514
564
  answerableCallback?: (arg1: boolean) => unknown;
515
565
  getAnotherHint?: () => unknown;
516
566
  interactionCallback?: (widgetData: {
@@ -589,6 +639,7 @@ declare const InteractiveGraph: {
589
639
  GroupMetadataEditor?: React.ComponentType<any>;
590
640
  showAlignmentOptions?: boolean;
591
641
  readOnly?: boolean;
642
+ editingDisabled?: boolean;
592
643
  answerableCallback?: (arg1: boolean) => unknown;
593
644
  getAnotherHint?: () => unknown;
594
645
  interactionCallback?: (widgetData: {
@@ -627,6 +678,7 @@ declare const InteractiveGraph: {
627
678
  isArticle: NonNullable<boolean | undefined>;
628
679
  isMobile: NonNullable<boolean | undefined>;
629
680
  isMobileApp: NonNullable<boolean | undefined>;
681
+ editingDisabled: NonNullable<boolean | undefined>;
630
682
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
631
683
  readOnly: NonNullable<boolean | undefined>;
632
684
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -682,6 +734,7 @@ declare const InteractiveGraph: {
682
734
  GroupMetadataEditor?: React.ComponentType<any>;
683
735
  showAlignmentOptions?: boolean;
684
736
  readOnly?: boolean;
737
+ editingDisabled?: boolean;
685
738
  answerableCallback?: (arg1: boolean) => unknown;
686
739
  getAnotherHint?: () => unknown;
687
740
  interactionCallback?: (widgetData: {
@@ -720,6 +773,7 @@ declare const InteractiveGraph: {
720
773
  isArticle: NonNullable<boolean | undefined>;
721
774
  isMobile: NonNullable<boolean | undefined>;
722
775
  isMobileApp: NonNullable<boolean | undefined>;
776
+ editingDisabled: NonNullable<boolean | undefined>;
723
777
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
724
778
  readOnly: NonNullable<boolean | undefined>;
725
779
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -772,6 +826,7 @@ declare const InteractiveGraph: {
772
826
  GroupMetadataEditor?: React.ComponentType<any>;
773
827
  showAlignmentOptions?: boolean;
774
828
  readOnly?: boolean;
829
+ editingDisabled?: boolean;
775
830
  answerableCallback?: (arg1: boolean) => unknown;
776
831
  getAnotherHint?: () => unknown;
777
832
  interactionCallback?: (widgetData: {
@@ -810,6 +865,7 @@ declare const InteractiveGraph: {
810
865
  isArticle: NonNullable<boolean | undefined>;
811
866
  isMobile: NonNullable<boolean | undefined>;
812
867
  isMobileApp: NonNullable<boolean | undefined>;
868
+ editingDisabled: NonNullable<boolean | undefined>;
813
869
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
814
870
  readOnly: NonNullable<boolean | undefined>;
815
871
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -860,6 +916,7 @@ declare const InteractiveGraph: {
860
916
  GroupMetadataEditor?: React.ComponentType<any>;
861
917
  showAlignmentOptions?: boolean;
862
918
  readOnly?: boolean;
919
+ editingDisabled?: boolean;
863
920
  answerableCallback?: (arg1: boolean) => unknown;
864
921
  getAnotherHint?: () => unknown;
865
922
  interactionCallback?: (widgetData: {
@@ -898,6 +955,7 @@ declare const InteractiveGraph: {
898
955
  isArticle: NonNullable<boolean | undefined>;
899
956
  isMobile: NonNullable<boolean | undefined>;
900
957
  isMobileApp: NonNullable<boolean | undefined>;
958
+ editingDisabled: NonNullable<boolean | undefined>;
901
959
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
902
960
  readOnly: NonNullable<boolean | undefined>;
903
961
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -950,6 +1008,7 @@ declare const InteractiveGraph: {
950
1008
  GroupMetadataEditor?: React.ComponentType<any>;
951
1009
  showAlignmentOptions?: boolean;
952
1010
  readOnly?: boolean;
1011
+ editingDisabled?: boolean;
953
1012
  answerableCallback?: (arg1: boolean) => unknown;
954
1013
  getAnotherHint?: () => unknown;
955
1014
  interactionCallback?: (widgetData: {
@@ -988,6 +1047,7 @@ declare const InteractiveGraph: {
988
1047
  isArticle: NonNullable<boolean | undefined>;
989
1048
  isMobile: NonNullable<boolean | undefined>;
990
1049
  isMobileApp: NonNullable<boolean | undefined>;
1050
+ editingDisabled: NonNullable<boolean | undefined>;
991
1051
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
992
1052
  readOnly: NonNullable<boolean | undefined>;
993
1053
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -1038,6 +1098,7 @@ declare const InteractiveGraph: {
1038
1098
  GroupMetadataEditor?: React.ComponentType<any>;
1039
1099
  showAlignmentOptions?: boolean;
1040
1100
  readOnly?: boolean;
1101
+ editingDisabled?: boolean;
1041
1102
  answerableCallback?: (arg1: boolean) => unknown;
1042
1103
  getAnotherHint?: () => unknown;
1043
1104
  interactionCallback?: (widgetData: {
@@ -1076,6 +1137,7 @@ declare const InteractiveGraph: {
1076
1137
  isArticle: NonNullable<boolean | undefined>;
1077
1138
  isMobile: NonNullable<boolean | undefined>;
1078
1139
  isMobileApp: NonNullable<boolean | undefined>;
1140
+ editingDisabled: NonNullable<boolean | undefined>;
1079
1141
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
1080
1142
  readOnly: NonNullable<boolean | undefined>;
1081
1143
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -1126,6 +1188,7 @@ declare const InteractiveGraph: {
1126
1188
  GroupMetadataEditor?: React.ComponentType<any>;
1127
1189
  showAlignmentOptions?: boolean;
1128
1190
  readOnly?: boolean;
1191
+ editingDisabled?: boolean;
1129
1192
  answerableCallback?: (arg1: boolean) => unknown;
1130
1193
  getAnotherHint?: () => unknown;
1131
1194
  interactionCallback?: (widgetData: {
@@ -1164,6 +1227,7 @@ declare const InteractiveGraph: {
1164
1227
  isArticle: NonNullable<boolean | undefined>;
1165
1228
  isMobile: NonNullable<boolean | undefined>;
1166
1229
  isMobileApp: NonNullable<boolean | undefined>;
1230
+ editingDisabled: NonNullable<boolean | undefined>;
1167
1231
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
1168
1232
  readOnly: NonNullable<boolean | undefined>;
1169
1233
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -1214,6 +1278,7 @@ declare const InteractiveGraph: {
1214
1278
  GroupMetadataEditor?: React.ComponentType<any>;
1215
1279
  showAlignmentOptions?: boolean;
1216
1280
  readOnly?: boolean;
1281
+ editingDisabled?: boolean;
1217
1282
  answerableCallback?: (arg1: boolean) => unknown;
1218
1283
  getAnotherHint?: () => unknown;
1219
1284
  interactionCallback?: (widgetData: {
@@ -1252,6 +1317,7 @@ declare const InteractiveGraph: {
1252
1317
  isArticle: NonNullable<boolean | undefined>;
1253
1318
  isMobile: NonNullable<boolean | undefined>;
1254
1319
  isMobileApp: NonNullable<boolean | undefined>;
1320
+ editingDisabled: NonNullable<boolean | undefined>;
1255
1321
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
1256
1322
  readOnly: NonNullable<boolean | undefined>;
1257
1323
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -1303,6 +1369,7 @@ declare const InteractiveGraph: {
1303
1369
  GroupMetadataEditor?: React.ComponentType<any>;
1304
1370
  showAlignmentOptions?: boolean;
1305
1371
  readOnly?: boolean;
1372
+ editingDisabled?: boolean;
1306
1373
  answerableCallback?: (arg1: boolean) => unknown;
1307
1374
  getAnotherHint?: () => unknown;
1308
1375
  interactionCallback?: (widgetData: {
@@ -1341,6 +1408,7 @@ declare const InteractiveGraph: {
1341
1408
  isArticle: NonNullable<boolean | undefined>;
1342
1409
  isMobile: NonNullable<boolean | undefined>;
1343
1410
  isMobileApp: NonNullable<boolean | undefined>;
1411
+ editingDisabled: NonNullable<boolean | undefined>;
1344
1412
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
1345
1413
  readOnly: NonNullable<boolean | undefined>;
1346
1414
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -1393,6 +1461,7 @@ declare const InteractiveGraph: {
1393
1461
  GroupMetadataEditor?: React.ComponentType<any>;
1394
1462
  showAlignmentOptions?: boolean;
1395
1463
  readOnly?: boolean;
1464
+ editingDisabled?: boolean;
1396
1465
  answerableCallback?: (arg1: boolean) => unknown;
1397
1466
  getAnotherHint?: () => unknown;
1398
1467
  interactionCallback?: (widgetData: {
@@ -1428,6 +1497,7 @@ declare const InteractiveGraph: {
1428
1497
  GroupMetadataEditor?: React.ComponentType<any>;
1429
1498
  showAlignmentOptions?: boolean;
1430
1499
  readOnly?: boolean;
1500
+ editingDisabled?: boolean;
1431
1501
  answerableCallback?: (arg1: boolean) => unknown;
1432
1502
  getAnotherHint?: () => unknown;
1433
1503
  interactionCallback?: (widgetData: {
@@ -1463,6 +1533,7 @@ declare const InteractiveGraph: {
1463
1533
  GroupMetadataEditor?: React.ComponentType<any>;
1464
1534
  showAlignmentOptions?: boolean;
1465
1535
  readOnly?: boolean;
1536
+ editingDisabled?: boolean;
1466
1537
  answerableCallback?: (arg1: boolean) => unknown;
1467
1538
  getAnotherHint?: () => unknown;
1468
1539
  interactionCallback?: (widgetData: {
@@ -1498,6 +1569,7 @@ declare const InteractiveGraph: {
1498
1569
  GroupMetadataEditor?: React.ComponentType<any>;
1499
1570
  showAlignmentOptions?: boolean;
1500
1571
  readOnly?: boolean;
1572
+ editingDisabled?: boolean;
1501
1573
  answerableCallback?: (arg1: boolean) => unknown;
1502
1574
  getAnotherHint?: () => unknown;
1503
1575
  interactionCallback?: (widgetData: {
@@ -1533,6 +1605,7 @@ declare const InteractiveGraph: {
1533
1605
  GroupMetadataEditor?: React.ComponentType<any>;
1534
1606
  showAlignmentOptions?: boolean;
1535
1607
  readOnly?: boolean;
1608
+ editingDisabled?: boolean;
1536
1609
  answerableCallback?: (arg1: boolean) => unknown;
1537
1610
  getAnotherHint?: () => unknown;
1538
1611
  interactionCallback?: (widgetData: {
@@ -1568,6 +1641,7 @@ declare const InteractiveGraph: {
1568
1641
  GroupMetadataEditor?: React.ComponentType<any>;
1569
1642
  showAlignmentOptions?: boolean;
1570
1643
  readOnly?: boolean;
1644
+ editingDisabled?: boolean;
1571
1645
  answerableCallback?: (arg1: boolean) => unknown;
1572
1646
  getAnotherHint?: () => unknown;
1573
1647
  interactionCallback?: (widgetData: {
@@ -1603,6 +1677,7 @@ declare const InteractiveGraph: {
1603
1677
  GroupMetadataEditor?: React.ComponentType<any>;
1604
1678
  showAlignmentOptions?: boolean;
1605
1679
  readOnly?: boolean;
1680
+ editingDisabled?: boolean;
1606
1681
  answerableCallback?: (arg1: boolean) => unknown;
1607
1682
  getAnotherHint?: () => unknown;
1608
1683
  interactionCallback?: (widgetData: {
@@ -1638,6 +1713,7 @@ declare const InteractiveGraph: {
1638
1713
  GroupMetadataEditor?: React.ComponentType<any>;
1639
1714
  showAlignmentOptions?: boolean;
1640
1715
  readOnly?: boolean;
1716
+ editingDisabled?: boolean;
1641
1717
  answerableCallback?: (arg1: boolean) => unknown;
1642
1718
  getAnotherHint?: () => unknown;
1643
1719
  interactionCallback?: (widgetData: {
@@ -1667,12 +1743,49 @@ declare const InteractiveGraph: {
1667
1743
  editorChangeDelay?: number;
1668
1744
  flags?: Record<"new-radio-widget" | "image-widget-upgrade", boolean>;
1669
1745
  }>["isMobileApp"]>;
1746
+ editingDisabled: NonNullable<Readonly<{
1747
+ isArticle?: boolean;
1748
+ onFocusChange?: (newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown;
1749
+ GroupMetadataEditor?: React.ComponentType<any>;
1750
+ showAlignmentOptions?: boolean;
1751
+ readOnly?: boolean;
1752
+ editingDisabled?: boolean;
1753
+ answerableCallback?: (arg1: boolean) => unknown;
1754
+ getAnotherHint?: () => unknown;
1755
+ interactionCallback?: (widgetData: {
1756
+ [widgetId: string]: any;
1757
+ }) => void;
1758
+ groupAnnotator?: (groupNumber: number, widgetId: string) => React.ReactNode;
1759
+ imagePlaceholder?: React.ReactNode;
1760
+ widgetPlaceholder?: React.ReactNode;
1761
+ baseElements?: {
1762
+ Link: React.ComponentType<any>;
1763
+ };
1764
+ imagePreloader?: (dimensions: import("../../../../perseus/src/types").Dimensions) => React.ReactNode;
1765
+ trackInteraction?: (args: {
1766
+ type: string;
1767
+ id: string;
1768
+ correct?: boolean;
1769
+ } & Partial<import("../../../../perseus/src/types").TrackingGradedGroupExtraArguments> & Partial<{
1770
+ visible: number;
1771
+ }>) => void;
1772
+ customKeypad?: boolean;
1773
+ nativeKeypadProxy?: (blur: () => void) => import("@khanacademy/math-input").KeypadAPI;
1774
+ isMobile?: boolean;
1775
+ isMobileApp?: boolean;
1776
+ setDrawingAreaAvailable?: (arg1: boolean) => unknown;
1777
+ hintProgressColor?: string;
1778
+ canScrollPage?: boolean;
1779
+ editorChangeDelay?: number;
1780
+ flags?: Record<"new-radio-widget" | "image-widget-upgrade", boolean>;
1781
+ }>["editingDisabled"]>;
1670
1782
  onFocusChange: NonNullable<Readonly<{
1671
1783
  isArticle?: boolean;
1672
1784
  onFocusChange?: (newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown;
1673
1785
  GroupMetadataEditor?: React.ComponentType<any>;
1674
1786
  showAlignmentOptions?: boolean;
1675
1787
  readOnly?: boolean;
1788
+ editingDisabled?: boolean;
1676
1789
  answerableCallback?: (arg1: boolean) => unknown;
1677
1790
  getAnotherHint?: () => unknown;
1678
1791
  interactionCallback?: (widgetData: {
@@ -1708,6 +1821,7 @@ declare const InteractiveGraph: {
1708
1821
  GroupMetadataEditor?: React.ComponentType<any>;
1709
1822
  showAlignmentOptions?: boolean;
1710
1823
  readOnly?: boolean;
1824
+ editingDisabled?: boolean;
1711
1825
  answerableCallback?: (arg1: boolean) => unknown;
1712
1826
  getAnotherHint?: () => unknown;
1713
1827
  interactionCallback?: (widgetData: {
@@ -1743,6 +1857,7 @@ declare const InteractiveGraph: {
1743
1857
  GroupMetadataEditor?: React.ComponentType<any>;
1744
1858
  showAlignmentOptions?: boolean;
1745
1859
  readOnly?: boolean;
1860
+ editingDisabled?: boolean;
1746
1861
  answerableCallback?: (arg1: boolean) => unknown;
1747
1862
  getAnotherHint?: () => unknown;
1748
1863
  interactionCallback?: (widgetData: {
@@ -1778,6 +1893,7 @@ declare const InteractiveGraph: {
1778
1893
  GroupMetadataEditor?: React.ComponentType<any>;
1779
1894
  showAlignmentOptions?: boolean;
1780
1895
  readOnly?: boolean;
1896
+ editingDisabled?: boolean;
1781
1897
  answerableCallback?: (arg1: boolean) => unknown;
1782
1898
  getAnotherHint?: () => unknown;
1783
1899
  interactionCallback?: (widgetData: {
@@ -1856,6 +1972,7 @@ declare const InteractiveGraph: {
1856
1972
  GroupMetadataEditor?: React.ComponentType<any>;
1857
1973
  showAlignmentOptions?: boolean;
1858
1974
  readOnly?: boolean;
1975
+ editingDisabled?: boolean;
1859
1976
  answerableCallback?: (arg1: boolean) => unknown;
1860
1977
  getAnotherHint?: () => unknown;
1861
1978
  interactionCallback?: (widgetData: {
@@ -1894,6 +2011,7 @@ declare const InteractiveGraph: {
1894
2011
  isArticle: NonNullable<boolean | undefined>;
1895
2012
  isMobile: NonNullable<boolean | undefined>;
1896
2013
  isMobileApp: NonNullable<boolean | undefined>;
2014
+ editingDisabled: NonNullable<boolean | undefined>;
1897
2015
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
1898
2016
  readOnly: NonNullable<boolean | undefined>;
1899
2017
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -1949,6 +2067,7 @@ declare const InteractiveGraph: {
1949
2067
  GroupMetadataEditor?: React.ComponentType<any>;
1950
2068
  showAlignmentOptions?: boolean;
1951
2069
  readOnly?: boolean;
2070
+ editingDisabled?: boolean;
1952
2071
  answerableCallback?: (arg1: boolean) => unknown;
1953
2072
  getAnotherHint?: () => unknown;
1954
2073
  interactionCallback?: (widgetData: {
@@ -1987,6 +2106,7 @@ declare const InteractiveGraph: {
1987
2106
  isArticle: NonNullable<boolean | undefined>;
1988
2107
  isMobile: NonNullable<boolean | undefined>;
1989
2108
  isMobileApp: NonNullable<boolean | undefined>;
2109
+ editingDisabled: NonNullable<boolean | undefined>;
1990
2110
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
1991
2111
  readOnly: NonNullable<boolean | undefined>;
1992
2112
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -2039,6 +2159,7 @@ declare const InteractiveGraph: {
2039
2159
  GroupMetadataEditor?: React.ComponentType<any>;
2040
2160
  showAlignmentOptions?: boolean;
2041
2161
  readOnly?: boolean;
2162
+ editingDisabled?: boolean;
2042
2163
  answerableCallback?: (arg1: boolean) => unknown;
2043
2164
  getAnotherHint?: () => unknown;
2044
2165
  interactionCallback?: (widgetData: {
@@ -2077,6 +2198,7 @@ declare const InteractiveGraph: {
2077
2198
  isArticle: NonNullable<boolean | undefined>;
2078
2199
  isMobile: NonNullable<boolean | undefined>;
2079
2200
  isMobileApp: NonNullable<boolean | undefined>;
2201
+ editingDisabled: NonNullable<boolean | undefined>;
2080
2202
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
2081
2203
  readOnly: NonNullable<boolean | undefined>;
2082
2204
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -2127,6 +2249,7 @@ declare const InteractiveGraph: {
2127
2249
  GroupMetadataEditor?: React.ComponentType<any>;
2128
2250
  showAlignmentOptions?: boolean;
2129
2251
  readOnly?: boolean;
2252
+ editingDisabled?: boolean;
2130
2253
  answerableCallback?: (arg1: boolean) => unknown;
2131
2254
  getAnotherHint?: () => unknown;
2132
2255
  interactionCallback?: (widgetData: {
@@ -2165,6 +2288,7 @@ declare const InteractiveGraph: {
2165
2288
  isArticle: NonNullable<boolean | undefined>;
2166
2289
  isMobile: NonNullable<boolean | undefined>;
2167
2290
  isMobileApp: NonNullable<boolean | undefined>;
2291
+ editingDisabled: NonNullable<boolean | undefined>;
2168
2292
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
2169
2293
  readOnly: NonNullable<boolean | undefined>;
2170
2294
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -2217,6 +2341,7 @@ declare const InteractiveGraph: {
2217
2341
  GroupMetadataEditor?: React.ComponentType<any>;
2218
2342
  showAlignmentOptions?: boolean;
2219
2343
  readOnly?: boolean;
2344
+ editingDisabled?: boolean;
2220
2345
  answerableCallback?: (arg1: boolean) => unknown;
2221
2346
  getAnotherHint?: () => unknown;
2222
2347
  interactionCallback?: (widgetData: {
@@ -2255,6 +2380,7 @@ declare const InteractiveGraph: {
2255
2380
  isArticle: NonNullable<boolean | undefined>;
2256
2381
  isMobile: NonNullable<boolean | undefined>;
2257
2382
  isMobileApp: NonNullable<boolean | undefined>;
2383
+ editingDisabled: NonNullable<boolean | undefined>;
2258
2384
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
2259
2385
  readOnly: NonNullable<boolean | undefined>;
2260
2386
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -2305,6 +2431,7 @@ declare const InteractiveGraph: {
2305
2431
  GroupMetadataEditor?: React.ComponentType<any>;
2306
2432
  showAlignmentOptions?: boolean;
2307
2433
  readOnly?: boolean;
2434
+ editingDisabled?: boolean;
2308
2435
  answerableCallback?: (arg1: boolean) => unknown;
2309
2436
  getAnotherHint?: () => unknown;
2310
2437
  interactionCallback?: (widgetData: {
@@ -2343,6 +2470,7 @@ declare const InteractiveGraph: {
2343
2470
  isArticle: NonNullable<boolean | undefined>;
2344
2471
  isMobile: NonNullable<boolean | undefined>;
2345
2472
  isMobileApp: NonNullable<boolean | undefined>;
2473
+ editingDisabled: NonNullable<boolean | undefined>;
2346
2474
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
2347
2475
  readOnly: NonNullable<boolean | undefined>;
2348
2476
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -2393,6 +2521,7 @@ declare const InteractiveGraph: {
2393
2521
  GroupMetadataEditor?: React.ComponentType<any>;
2394
2522
  showAlignmentOptions?: boolean;
2395
2523
  readOnly?: boolean;
2524
+ editingDisabled?: boolean;
2396
2525
  answerableCallback?: (arg1: boolean) => unknown;
2397
2526
  getAnotherHint?: () => unknown;
2398
2527
  interactionCallback?: (widgetData: {
@@ -2431,6 +2560,7 @@ declare const InteractiveGraph: {
2431
2560
  isArticle: NonNullable<boolean | undefined>;
2432
2561
  isMobile: NonNullable<boolean | undefined>;
2433
2562
  isMobileApp: NonNullable<boolean | undefined>;
2563
+ editingDisabled: NonNullable<boolean | undefined>;
2434
2564
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
2435
2565
  readOnly: NonNullable<boolean | undefined>;
2436
2566
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -2481,6 +2611,7 @@ declare const InteractiveGraph: {
2481
2611
  GroupMetadataEditor?: React.ComponentType<any>;
2482
2612
  showAlignmentOptions?: boolean;
2483
2613
  readOnly?: boolean;
2614
+ editingDisabled?: boolean;
2484
2615
  answerableCallback?: (arg1: boolean) => unknown;
2485
2616
  getAnotherHint?: () => unknown;
2486
2617
  interactionCallback?: (widgetData: {
@@ -2519,6 +2650,7 @@ declare const InteractiveGraph: {
2519
2650
  isArticle: NonNullable<boolean | undefined>;
2520
2651
  isMobile: NonNullable<boolean | undefined>;
2521
2652
  isMobileApp: NonNullable<boolean | undefined>;
2653
+ editingDisabled: NonNullable<boolean | undefined>;
2522
2654
  onFocusChange: NonNullable<((newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown) | undefined>;
2523
2655
  readOnly: NonNullable<boolean | undefined>;
2524
2656
  setDrawingAreaAvailable: NonNullable<((arg1: boolean) => unknown) | undefined>;
@@ -2582,6 +2714,7 @@ declare const InteractiveGraph: {
2582
2714
  GroupMetadataEditor?: React.ComponentType<any>;
2583
2715
  showAlignmentOptions?: boolean;
2584
2716
  readOnly?: boolean;
2717
+ editingDisabled?: boolean;
2585
2718
  answerableCallback?: (arg1: boolean) => unknown;
2586
2719
  getAnotherHint?: () => unknown;
2587
2720
  interactionCallback?: (widgetData: {
@@ -2618,6 +2751,7 @@ declare const InteractiveGraph: {
2618
2751
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
2619
2752
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
2620
2753
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
2754
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
2621
2755
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
2622
2756
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
2623
2757
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -2668,6 +2802,7 @@ declare const InteractiveGraph: {
2668
2802
  GroupMetadataEditor?: React.ComponentType<any>;
2669
2803
  showAlignmentOptions?: boolean;
2670
2804
  readOnly?: boolean;
2805
+ editingDisabled?: boolean;
2671
2806
  answerableCallback?: (arg1: boolean) => unknown;
2672
2807
  getAnotherHint?: () => unknown;
2673
2808
  interactionCallback?: (widgetData: {
@@ -2704,6 +2839,7 @@ declare const InteractiveGraph: {
2704
2839
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
2705
2840
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
2706
2841
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
2842
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
2707
2843
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
2708
2844
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
2709
2845
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -2754,6 +2890,7 @@ declare const InteractiveGraph: {
2754
2890
  GroupMetadataEditor?: React.ComponentType<any>;
2755
2891
  showAlignmentOptions?: boolean;
2756
2892
  readOnly?: boolean;
2893
+ editingDisabled?: boolean;
2757
2894
  answerableCallback?: (arg1: boolean) => unknown;
2758
2895
  getAnotherHint?: () => unknown;
2759
2896
  interactionCallback?: (widgetData: {
@@ -2790,6 +2927,7 @@ declare const InteractiveGraph: {
2790
2927
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
2791
2928
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
2792
2929
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
2930
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
2793
2931
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
2794
2932
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
2795
2933
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -2840,6 +2978,7 @@ declare const InteractiveGraph: {
2840
2978
  GroupMetadataEditor?: React.ComponentType<any>;
2841
2979
  showAlignmentOptions?: boolean;
2842
2980
  readOnly?: boolean;
2981
+ editingDisabled?: boolean;
2843
2982
  answerableCallback?: (arg1: boolean) => unknown;
2844
2983
  getAnotherHint?: () => unknown;
2845
2984
  interactionCallback?: (widgetData: {
@@ -2876,6 +3015,7 @@ declare const InteractiveGraph: {
2876
3015
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
2877
3016
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
2878
3017
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3018
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
2879
3019
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
2880
3020
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
2881
3021
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -2926,6 +3066,7 @@ declare const InteractiveGraph: {
2926
3066
  GroupMetadataEditor?: React.ComponentType<any>;
2927
3067
  showAlignmentOptions?: boolean;
2928
3068
  readOnly?: boolean;
3069
+ editingDisabled?: boolean;
2929
3070
  answerableCallback?: (arg1: boolean) => unknown;
2930
3071
  getAnotherHint?: () => unknown;
2931
3072
  interactionCallback?: (widgetData: {
@@ -2962,6 +3103,7 @@ declare const InteractiveGraph: {
2962
3103
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
2963
3104
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
2964
3105
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3106
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
2965
3107
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
2966
3108
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
2967
3109
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3012,6 +3154,7 @@ declare const InteractiveGraph: {
3012
3154
  GroupMetadataEditor?: React.ComponentType<any>;
3013
3155
  showAlignmentOptions?: boolean;
3014
3156
  readOnly?: boolean;
3157
+ editingDisabled?: boolean;
3015
3158
  answerableCallback?: (arg1: boolean) => unknown;
3016
3159
  getAnotherHint?: () => unknown;
3017
3160
  interactionCallback?: (widgetData: {
@@ -3048,6 +3191,7 @@ declare const InteractiveGraph: {
3048
3191
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3049
3192
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3050
3193
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3194
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3051
3195
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3052
3196
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3053
3197
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3099,6 +3243,7 @@ declare const InteractiveGraph: {
3099
3243
  GroupMetadataEditor?: React.ComponentType<any>;
3100
3244
  showAlignmentOptions?: boolean;
3101
3245
  readOnly?: boolean;
3246
+ editingDisabled?: boolean;
3102
3247
  answerableCallback?: (arg1: boolean) => unknown;
3103
3248
  getAnotherHint?: () => unknown;
3104
3249
  interactionCallback?: (widgetData: {
@@ -3135,6 +3280,7 @@ declare const InteractiveGraph: {
3135
3280
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3136
3281
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3137
3282
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3283
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3138
3284
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3139
3285
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3140
3286
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3185,6 +3331,7 @@ declare const InteractiveGraph: {
3185
3331
  GroupMetadataEditor?: React.ComponentType<any>;
3186
3332
  showAlignmentOptions?: boolean;
3187
3333
  readOnly?: boolean;
3334
+ editingDisabled?: boolean;
3188
3335
  answerableCallback?: (arg1: boolean) => unknown;
3189
3336
  getAnotherHint?: () => unknown;
3190
3337
  interactionCallback?: (widgetData: {
@@ -3221,6 +3368,7 @@ declare const InteractiveGraph: {
3221
3368
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3222
3369
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3223
3370
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3371
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3224
3372
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3225
3373
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3226
3374
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3272,6 +3420,7 @@ declare const InteractiveGraph: {
3272
3420
  GroupMetadataEditor?: React.ComponentType<any>;
3273
3421
  showAlignmentOptions?: boolean;
3274
3422
  readOnly?: boolean;
3423
+ editingDisabled?: boolean;
3275
3424
  answerableCallback?: (arg1: boolean) => unknown;
3276
3425
  getAnotherHint?: () => unknown;
3277
3426
  interactionCallback?: (widgetData: {
@@ -3308,6 +3457,7 @@ declare const InteractiveGraph: {
3308
3457
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3309
3458
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3310
3459
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3460
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3311
3461
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3312
3462
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3313
3463
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3358,6 +3508,7 @@ declare const InteractiveGraph: {
3358
3508
  GroupMetadataEditor?: React.ComponentType<any>;
3359
3509
  showAlignmentOptions?: boolean;
3360
3510
  readOnly?: boolean;
3511
+ editingDisabled?: boolean;
3361
3512
  answerableCallback?: (arg1: boolean) => unknown;
3362
3513
  getAnotherHint?: () => unknown;
3363
3514
  interactionCallback?: (widgetData: {
@@ -3394,6 +3545,7 @@ declare const InteractiveGraph: {
3394
3545
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3395
3546
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3396
3547
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3548
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3397
3549
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3398
3550
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3399
3551
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3444,6 +3596,7 @@ declare const InteractiveGraph: {
3444
3596
  GroupMetadataEditor?: React.ComponentType<any>;
3445
3597
  showAlignmentOptions?: boolean;
3446
3598
  readOnly?: boolean;
3599
+ editingDisabled?: boolean;
3447
3600
  answerableCallback?: (arg1: boolean) => unknown;
3448
3601
  getAnotherHint?: () => unknown;
3449
3602
  interactionCallback?: (widgetData: {
@@ -3480,6 +3633,7 @@ declare const InteractiveGraph: {
3480
3633
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3481
3634
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3482
3635
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3636
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3483
3637
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3484
3638
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3485
3639
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3530,6 +3684,7 @@ declare const InteractiveGraph: {
3530
3684
  GroupMetadataEditor?: React.ComponentType<any>;
3531
3685
  showAlignmentOptions?: boolean;
3532
3686
  readOnly?: boolean;
3687
+ editingDisabled?: boolean;
3533
3688
  answerableCallback?: (arg1: boolean) => unknown;
3534
3689
  getAnotherHint?: () => unknown;
3535
3690
  interactionCallback?: (widgetData: {
@@ -3566,6 +3721,7 @@ declare const InteractiveGraph: {
3566
3721
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3567
3722
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3568
3723
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3724
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3569
3725
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3570
3726
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3571
3727
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3616,6 +3772,7 @@ declare const InteractiveGraph: {
3616
3772
  GroupMetadataEditor?: React.ComponentType<any>;
3617
3773
  showAlignmentOptions?: boolean;
3618
3774
  readOnly?: boolean;
3775
+ editingDisabled?: boolean;
3619
3776
  answerableCallback?: (arg1: boolean) => unknown;
3620
3777
  getAnotherHint?: () => unknown;
3621
3778
  interactionCallback?: (widgetData: {
@@ -3652,6 +3809,7 @@ declare const InteractiveGraph: {
3652
3809
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3653
3810
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3654
3811
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3812
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3655
3813
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3656
3814
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3657
3815
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3702,6 +3860,7 @@ declare const InteractiveGraph: {
3702
3860
  GroupMetadataEditor?: React.ComponentType<any>;
3703
3861
  showAlignmentOptions?: boolean;
3704
3862
  readOnly?: boolean;
3863
+ editingDisabled?: boolean;
3705
3864
  answerableCallback?: (arg1: boolean) => unknown;
3706
3865
  getAnotherHint?: () => unknown;
3707
3866
  interactionCallback?: (widgetData: {
@@ -3738,6 +3897,7 @@ declare const InteractiveGraph: {
3738
3897
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3739
3898
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3740
3899
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3900
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3741
3901
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3742
3902
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3743
3903
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3788,6 +3948,7 @@ declare const InteractiveGraph: {
3788
3948
  GroupMetadataEditor?: React.ComponentType<any>;
3789
3949
  showAlignmentOptions?: boolean;
3790
3950
  readOnly?: boolean;
3951
+ editingDisabled?: boolean;
3791
3952
  answerableCallback?: (arg1: boolean) => unknown;
3792
3953
  getAnotherHint?: () => unknown;
3793
3954
  interactionCallback?: (widgetData: {
@@ -3824,6 +3985,7 @@ declare const InteractiveGraph: {
3824
3985
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3825
3986
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3826
3987
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
3988
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3827
3989
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3828
3990
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3829
3991
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3874,6 +4036,7 @@ declare const InteractiveGraph: {
3874
4036
  GroupMetadataEditor?: React.ComponentType<any>;
3875
4037
  showAlignmentOptions?: boolean;
3876
4038
  readOnly?: boolean;
4039
+ editingDisabled?: boolean;
3877
4040
  answerableCallback?: (arg1: boolean) => unknown;
3878
4041
  getAnotherHint?: () => unknown;
3879
4042
  interactionCallback?: (widgetData: {
@@ -3910,6 +4073,7 @@ declare const InteractiveGraph: {
3910
4073
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3911
4074
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3912
4075
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
4076
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3913
4077
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
3914
4078
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
3915
4079
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -3960,6 +4124,7 @@ declare const InteractiveGraph: {
3960
4124
  GroupMetadataEditor?: React.ComponentType<any>;
3961
4125
  showAlignmentOptions?: boolean;
3962
4126
  readOnly?: boolean;
4127
+ editingDisabled?: boolean;
3963
4128
  answerableCallback?: (arg1: boolean) => unknown;
3964
4129
  getAnotherHint?: () => unknown;
3965
4130
  interactionCallback?: (widgetData: {
@@ -3996,6 +4161,7 @@ declare const InteractiveGraph: {
3996
4161
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
3997
4162
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
3998
4163
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
4164
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
3999
4165
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
4000
4166
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
4001
4167
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -4046,6 +4212,7 @@ declare const InteractiveGraph: {
4046
4212
  GroupMetadataEditor?: React.ComponentType<any>;
4047
4213
  showAlignmentOptions?: boolean;
4048
4214
  readOnly?: boolean;
4215
+ editingDisabled?: boolean;
4049
4216
  answerableCallback?: (arg1: boolean) => unknown;
4050
4217
  getAnotherHint?: () => unknown;
4051
4218
  interactionCallback?: (widgetData: {
@@ -4082,6 +4249,7 @@ declare const InteractiveGraph: {
4082
4249
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
4083
4250
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
4084
4251
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
4252
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
4085
4253
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
4086
4254
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
4087
4255
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -4132,6 +4300,7 @@ declare const InteractiveGraph: {
4132
4300
  GroupMetadataEditor?: React.ComponentType<any>;
4133
4301
  showAlignmentOptions?: boolean;
4134
4302
  readOnly?: boolean;
4303
+ editingDisabled?: boolean;
4135
4304
  answerableCallback?: (arg1: boolean) => unknown;
4136
4305
  getAnotherHint?: () => unknown;
4137
4306
  interactionCallback?: (widgetData: {
@@ -4168,6 +4337,7 @@ declare const InteractiveGraph: {
4168
4337
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
4169
4338
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
4170
4339
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
4340
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
4171
4341
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
4172
4342
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
4173
4343
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -4218,6 +4388,7 @@ declare const InteractiveGraph: {
4218
4388
  GroupMetadataEditor?: React.ComponentType<any>;
4219
4389
  showAlignmentOptions?: boolean;
4220
4390
  readOnly?: boolean;
4391
+ editingDisabled?: boolean;
4221
4392
  answerableCallback?: (arg1: boolean) => unknown;
4222
4393
  getAnotherHint?: () => unknown;
4223
4394
  interactionCallback?: (widgetData: {
@@ -4254,6 +4425,7 @@ declare const InteractiveGraph: {
4254
4425
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
4255
4426
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
4256
4427
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
4428
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
4257
4429
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
4258
4430
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
4259
4431
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -4304,6 +4476,7 @@ declare const InteractiveGraph: {
4304
4476
  GroupMetadataEditor?: React.ComponentType<any>;
4305
4477
  showAlignmentOptions?: boolean;
4306
4478
  readOnly?: boolean;
4479
+ editingDisabled?: boolean;
4307
4480
  answerableCallback?: (arg1: boolean) => unknown;
4308
4481
  getAnotherHint?: () => unknown;
4309
4482
  interactionCallback?: (widgetData: {
@@ -4340,6 +4513,7 @@ declare const InteractiveGraph: {
4340
4513
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
4341
4514
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
4342
4515
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
4516
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
4343
4517
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
4344
4518
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
4345
4519
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
@@ -4390,6 +4564,7 @@ declare const InteractiveGraph: {
4390
4564
  GroupMetadataEditor?: React.ComponentType<any>;
4391
4565
  showAlignmentOptions?: boolean;
4392
4566
  readOnly?: boolean;
4567
+ editingDisabled?: boolean;
4393
4568
  answerableCallback?: (arg1: boolean) => unknown;
4394
4569
  getAnotherHint?: () => unknown;
4395
4570
  interactionCallback?: (widgetData: {
@@ -4426,6 +4601,7 @@ declare const InteractiveGraph: {
4426
4601
  isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
4427
4602
  isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
4428
4603
  isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
4604
+ editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
4429
4605
  onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
4430
4606
  readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
4431
4607
  setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;