@khanacademy/perseus-editor 30.1.1 → 30.2.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.
- package/dist/es/index.css +7 -3
- package/dist/es/index.css.map +1 -1
- package/dist/es/index.js +65 -61
- package/dist/es/index.js.map +1 -1
- package/dist/index.css +7 -3
- package/dist/index.css.map +1 -1
- package/dist/index.js +64 -60
- package/dist/index.js.map +1 -1
- package/dist/preview/message-types.d.ts +0 -1
- package/dist/util/a11y-checker.d.ts +1 -1
- package/dist/widgets/interactive-graph-editor/interactive-graph-editor.d.ts +218 -50
- package/dist/widgets/interactive-graph-editor/start-coords/start-coords-logarithm.d.ts +12 -0
- package/dist/widgets/interactive-graph-editor/start-coords/types.d.ts +2 -0
- package/dist/widgets/interactive-graph-editor/start-coords/util.d.ts +1 -0
- package/package.json +10 -10
|
@@ -81,7 +81,7 @@ declare const InteractiveGraph: {
|
|
|
81
81
|
keypadElement?: any;
|
|
82
82
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
83
83
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
84
|
-
findWidgets:
|
|
84
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
85
85
|
reviewMode: boolean;
|
|
86
86
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
87
87
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -91,7 +91,7 @@ declare const InteractiveGraph: {
|
|
|
91
91
|
}): {
|
|
92
92
|
mafsRef: React.RefObject<import("../../../../perseus/src/widgets/interactive-graphs/stateful-mafs-graph").StatefulMafsGraphType>;
|
|
93
93
|
getUserInput(): import("@khanacademy/perseus-core").PerseusInteractiveGraphUserInput;
|
|
94
|
-
getPromptJSON(): import("
|
|
94
|
+
getPromptJSON(): import("@khanacademy/perseus").InteractiveGraphPromptJSON | import("@khanacademy/perseus").UnsupportedWidgetPromptJSON;
|
|
95
95
|
getSerializedState(): {
|
|
96
96
|
graph: PerseusGraphType;
|
|
97
97
|
step: [number, number];
|
|
@@ -530,7 +530,7 @@ declare const InteractiveGraph: {
|
|
|
530
530
|
keypadElement?: any;
|
|
531
531
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
532
532
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
533
|
-
findWidgets:
|
|
533
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
534
534
|
reviewMode: boolean;
|
|
535
535
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
536
536
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -619,7 +619,7 @@ declare const InteractiveGraph: {
|
|
|
619
619
|
keypadElement?: any;
|
|
620
620
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
621
621
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
622
|
-
findWidgets:
|
|
622
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
623
623
|
reviewMode: boolean;
|
|
624
624
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
625
625
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -710,7 +710,7 @@ declare const InteractiveGraph: {
|
|
|
710
710
|
keypadElement?: any;
|
|
711
711
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
712
712
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
713
|
-
findWidgets:
|
|
713
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
714
714
|
reviewMode: boolean;
|
|
715
715
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
716
716
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -798,7 +798,7 @@ declare const InteractiveGraph: {
|
|
|
798
798
|
keypadElement?: any;
|
|
799
799
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
800
800
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
801
|
-
findWidgets:
|
|
801
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
802
802
|
reviewMode: boolean;
|
|
803
803
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
804
804
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -884,7 +884,7 @@ declare const InteractiveGraph: {
|
|
|
884
884
|
keypadElement?: any;
|
|
885
885
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
886
886
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
887
|
-
findWidgets:
|
|
887
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
888
888
|
reviewMode: boolean;
|
|
889
889
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
890
890
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -972,7 +972,7 @@ declare const InteractiveGraph: {
|
|
|
972
972
|
keypadElement?: any;
|
|
973
973
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
974
974
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
975
|
-
findWidgets:
|
|
975
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
976
976
|
reviewMode: boolean;
|
|
977
977
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
978
978
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -1058,7 +1058,7 @@ declare const InteractiveGraph: {
|
|
|
1058
1058
|
keypadElement?: any;
|
|
1059
1059
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1060
1060
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1061
|
-
findWidgets:
|
|
1061
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
1062
1062
|
reviewMode: boolean;
|
|
1063
1063
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
1064
1064
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -1144,7 +1144,7 @@ declare const InteractiveGraph: {
|
|
|
1144
1144
|
keypadElement?: any;
|
|
1145
1145
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1146
1146
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1147
|
-
findWidgets:
|
|
1147
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
1148
1148
|
reviewMode: boolean;
|
|
1149
1149
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
1150
1150
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -1230,7 +1230,7 @@ declare const InteractiveGraph: {
|
|
|
1230
1230
|
keypadElement?: any;
|
|
1231
1231
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1232
1232
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1233
|
-
findWidgets:
|
|
1233
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
1234
1234
|
reviewMode: boolean;
|
|
1235
1235
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
1236
1236
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -1317,7 +1317,7 @@ declare const InteractiveGraph: {
|
|
|
1317
1317
|
keypadElement?: any;
|
|
1318
1318
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1319
1319
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1320
|
-
findWidgets:
|
|
1320
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
1321
1321
|
reviewMode: boolean;
|
|
1322
1322
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
1323
1323
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -1327,7 +1327,7 @@ declare const InteractiveGraph: {
|
|
|
1327
1327
|
}, context: any): {
|
|
1328
1328
|
mafsRef: React.RefObject<import("../../../../perseus/src/widgets/interactive-graphs/stateful-mafs-graph").StatefulMafsGraphType>;
|
|
1329
1329
|
getUserInput(): import("@khanacademy/perseus-core").PerseusInteractiveGraphUserInput;
|
|
1330
|
-
getPromptJSON(): import("
|
|
1330
|
+
getPromptJSON(): import("@khanacademy/perseus").InteractiveGraphPromptJSON | import("@khanacademy/perseus").UnsupportedWidgetPromptJSON;
|
|
1331
1331
|
getSerializedState(): {
|
|
1332
1332
|
graph: PerseusGraphType;
|
|
1333
1333
|
step: [number, number];
|
|
@@ -1766,7 +1766,7 @@ declare const InteractiveGraph: {
|
|
|
1766
1766
|
keypadElement?: any;
|
|
1767
1767
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1768
1768
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1769
|
-
findWidgets:
|
|
1769
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
1770
1770
|
reviewMode: boolean;
|
|
1771
1771
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
1772
1772
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -1855,7 +1855,7 @@ declare const InteractiveGraph: {
|
|
|
1855
1855
|
keypadElement?: any;
|
|
1856
1856
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1857
1857
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1858
|
-
findWidgets:
|
|
1858
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
1859
1859
|
reviewMode: boolean;
|
|
1860
1860
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
1861
1861
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -1946,7 +1946,7 @@ declare const InteractiveGraph: {
|
|
|
1946
1946
|
keypadElement?: any;
|
|
1947
1947
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1948
1948
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
1949
|
-
findWidgets:
|
|
1949
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
1950
1950
|
reviewMode: boolean;
|
|
1951
1951
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
1952
1952
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2034,7 +2034,7 @@ declare const InteractiveGraph: {
|
|
|
2034
2034
|
keypadElement?: any;
|
|
2035
2035
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2036
2036
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2037
|
-
findWidgets:
|
|
2037
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2038
2038
|
reviewMode: boolean;
|
|
2039
2039
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2040
2040
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2120,7 +2120,7 @@ declare const InteractiveGraph: {
|
|
|
2120
2120
|
keypadElement?: any;
|
|
2121
2121
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2122
2122
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2123
|
-
findWidgets:
|
|
2123
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2124
2124
|
reviewMode: boolean;
|
|
2125
2125
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2126
2126
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2208,7 +2208,7 @@ declare const InteractiveGraph: {
|
|
|
2208
2208
|
keypadElement?: any;
|
|
2209
2209
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2210
2210
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2211
|
-
findWidgets:
|
|
2211
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2212
2212
|
reviewMode: boolean;
|
|
2213
2213
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2214
2214
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2294,7 +2294,7 @@ declare const InteractiveGraph: {
|
|
|
2294
2294
|
keypadElement?: any;
|
|
2295
2295
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2296
2296
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2297
|
-
findWidgets:
|
|
2297
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2298
2298
|
reviewMode: boolean;
|
|
2299
2299
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2300
2300
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2380,7 +2380,7 @@ declare const InteractiveGraph: {
|
|
|
2380
2380
|
keypadElement?: any;
|
|
2381
2381
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2382
2382
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2383
|
-
findWidgets:
|
|
2383
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2384
2384
|
reviewMode: boolean;
|
|
2385
2385
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2386
2386
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2466,7 +2466,7 @@ declare const InteractiveGraph: {
|
|
|
2466
2466
|
keypadElement?: any;
|
|
2467
2467
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2468
2468
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2469
|
-
findWidgets:
|
|
2469
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2470
2470
|
reviewMode: boolean;
|
|
2471
2471
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2472
2472
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2563,7 +2563,7 @@ declare const InteractiveGraph: {
|
|
|
2563
2563
|
keypadElement?: any;
|
|
2564
2564
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2565
2565
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2566
|
-
findWidgets:
|
|
2566
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2567
2567
|
reviewMode: boolean;
|
|
2568
2568
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2569
2569
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2647,7 +2647,7 @@ declare const InteractiveGraph: {
|
|
|
2647
2647
|
keypadElement?: any;
|
|
2648
2648
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2649
2649
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2650
|
-
findWidgets:
|
|
2650
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2651
2651
|
reviewMode: boolean;
|
|
2652
2652
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2653
2653
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2731,7 +2731,7 @@ declare const InteractiveGraph: {
|
|
|
2731
2731
|
keypadElement?: any;
|
|
2732
2732
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2733
2733
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2734
|
-
findWidgets:
|
|
2734
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2735
2735
|
reviewMode: boolean;
|
|
2736
2736
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2737
2737
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2815,7 +2815,7 @@ declare const InteractiveGraph: {
|
|
|
2815
2815
|
keypadElement?: any;
|
|
2816
2816
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2817
2817
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2818
|
-
findWidgets:
|
|
2818
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2819
2819
|
reviewMode: boolean;
|
|
2820
2820
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2821
2821
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2899,7 +2899,7 @@ declare const InteractiveGraph: {
|
|
|
2899
2899
|
keypadElement?: any;
|
|
2900
2900
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2901
2901
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2902
|
-
findWidgets:
|
|
2902
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2903
2903
|
reviewMode: boolean;
|
|
2904
2904
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2905
2905
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -2983,7 +2983,7 @@ declare const InteractiveGraph: {
|
|
|
2983
2983
|
keypadElement?: any;
|
|
2984
2984
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2985
2985
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
2986
|
-
findWidgets:
|
|
2986
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
2987
2987
|
reviewMode: boolean;
|
|
2988
2988
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
2989
2989
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3068,7 +3068,7 @@ declare const InteractiveGraph: {
|
|
|
3068
3068
|
keypadElement?: any;
|
|
3069
3069
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3070
3070
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3071
|
-
findWidgets:
|
|
3071
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3072
3072
|
reviewMode: boolean;
|
|
3073
3073
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3074
3074
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3152,7 +3152,7 @@ declare const InteractiveGraph: {
|
|
|
3152
3152
|
keypadElement?: any;
|
|
3153
3153
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3154
3154
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3155
|
-
findWidgets:
|
|
3155
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3156
3156
|
reviewMode: boolean;
|
|
3157
3157
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3158
3158
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3237,7 +3237,7 @@ declare const InteractiveGraph: {
|
|
|
3237
3237
|
keypadElement?: any;
|
|
3238
3238
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3239
3239
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3240
|
-
findWidgets:
|
|
3240
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3241
3241
|
reviewMode: boolean;
|
|
3242
3242
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3243
3243
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3321,7 +3321,7 @@ declare const InteractiveGraph: {
|
|
|
3321
3321
|
keypadElement?: any;
|
|
3322
3322
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3323
3323
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3324
|
-
findWidgets:
|
|
3324
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3325
3325
|
reviewMode: boolean;
|
|
3326
3326
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3327
3327
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3405,7 +3405,7 @@ declare const InteractiveGraph: {
|
|
|
3405
3405
|
keypadElement?: any;
|
|
3406
3406
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3407
3407
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3408
|
-
findWidgets:
|
|
3408
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3409
3409
|
reviewMode: boolean;
|
|
3410
3410
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3411
3411
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3489,7 +3489,7 @@ declare const InteractiveGraph: {
|
|
|
3489
3489
|
keypadElement?: any;
|
|
3490
3490
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3491
3491
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3492
|
-
findWidgets:
|
|
3492
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3493
3493
|
reviewMode: boolean;
|
|
3494
3494
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3495
3495
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3573,7 +3573,7 @@ declare const InteractiveGraph: {
|
|
|
3573
3573
|
keypadElement?: any;
|
|
3574
3574
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3575
3575
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3576
|
-
findWidgets:
|
|
3576
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3577
3577
|
reviewMode: boolean;
|
|
3578
3578
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3579
3579
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3657,7 +3657,7 @@ declare const InteractiveGraph: {
|
|
|
3657
3657
|
keypadElement?: any;
|
|
3658
3658
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3659
3659
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3660
|
-
findWidgets:
|
|
3660
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3661
3661
|
reviewMode: boolean;
|
|
3662
3662
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3663
3663
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3741,7 +3741,7 @@ declare const InteractiveGraph: {
|
|
|
3741
3741
|
keypadElement?: any;
|
|
3742
3742
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3743
3743
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3744
|
-
findWidgets:
|
|
3744
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3745
3745
|
reviewMode: boolean;
|
|
3746
3746
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3747
3747
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3825,7 +3825,7 @@ declare const InteractiveGraph: {
|
|
|
3825
3825
|
keypadElement?: any;
|
|
3826
3826
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3827
3827
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3828
|
-
findWidgets:
|
|
3828
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3829
3829
|
reviewMode: boolean;
|
|
3830
3830
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3831
3831
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3909,7 +3909,175 @@ declare const InteractiveGraph: {
|
|
|
3909
3909
|
keypadElement?: any;
|
|
3910
3910
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3911
3911
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3912
|
-
findWidgets:
|
|
3912
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3913
|
+
reviewMode: boolean;
|
|
3914
|
+
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3915
|
+
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
3916
|
+
userInput: PerseusGraphType;
|
|
3917
|
+
linterContext: import("@khanacademy/perseus-linter").LinterContextProps;
|
|
3918
|
+
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
3919
|
+
}): string;
|
|
3920
|
+
defaultLogarithmCoords(props: {
|
|
3921
|
+
step: [number, number];
|
|
3922
|
+
gridStep?: [x: number, y: number];
|
|
3923
|
+
snapStep?: [x: number, y: number];
|
|
3924
|
+
backgroundImage?: PerseusImageBackground;
|
|
3925
|
+
markings: MarkingsType;
|
|
3926
|
+
labels: string[];
|
|
3927
|
+
labelLocation: AxisLabelLocation;
|
|
3928
|
+
showProtractor: boolean;
|
|
3929
|
+
showRuler?: boolean;
|
|
3930
|
+
showTooltips?: boolean;
|
|
3931
|
+
rulerLabel?: string;
|
|
3932
|
+
rulerTicks?: number;
|
|
3933
|
+
range: import("@khanacademy/perseus-core").GraphRange;
|
|
3934
|
+
showAxisArrows: ShowAxisArrows;
|
|
3935
|
+
graph: PerseusGraphType;
|
|
3936
|
+
correct?: PerseusGraphType;
|
|
3937
|
+
lockedFigures: LockedFigure[];
|
|
3938
|
+
fullGraphAriaLabel?: string;
|
|
3939
|
+
fullGraphAriaDescription?: string;
|
|
3940
|
+
} & {
|
|
3941
|
+
trackInteraction: (extraData?: Empty | undefined) => void;
|
|
3942
|
+
widgetId: string;
|
|
3943
|
+
widgetIndex: number;
|
|
3944
|
+
alignment: string | null | undefined;
|
|
3945
|
+
static: boolean | null | undefined;
|
|
3946
|
+
problemNum: number | null | undefined;
|
|
3947
|
+
apiOptions: Readonly<Readonly<{
|
|
3948
|
+
isArticle?: boolean;
|
|
3949
|
+
onFocusChange?: (newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown;
|
|
3950
|
+
showAlignmentOptions?: boolean;
|
|
3951
|
+
readOnly?: boolean;
|
|
3952
|
+
editingDisabled?: boolean;
|
|
3953
|
+
answerableCallback?: (arg1: boolean) => unknown;
|
|
3954
|
+
getAnotherHint?: () => unknown;
|
|
3955
|
+
interactionCallback?: (widgetData: {
|
|
3956
|
+
[widgetId: string]: any;
|
|
3957
|
+
}) => void;
|
|
3958
|
+
imagePlaceholder?: React.ReactNode;
|
|
3959
|
+
widgetPlaceholder?: React.ReactNode;
|
|
3960
|
+
baseElements?: {
|
|
3961
|
+
Link: React.ComponentType<any>;
|
|
3962
|
+
};
|
|
3963
|
+
imagePreloader?: (dimensions: import("../../../../perseus/src/types").Dimensions) => React.ReactNode;
|
|
3964
|
+
trackInteraction?: (args: {
|
|
3965
|
+
type: string;
|
|
3966
|
+
id: string;
|
|
3967
|
+
correct?: boolean;
|
|
3968
|
+
} & Partial<import("../../../../perseus/src/types").TrackingGradedGroupExtraArguments> & Partial<{
|
|
3969
|
+
visible: number;
|
|
3970
|
+
}>) => void;
|
|
3971
|
+
customKeypad?: boolean;
|
|
3972
|
+
nativeKeypadProxy?: (blur: () => void) => import("@khanacademy/math-input").KeypadAPI;
|
|
3973
|
+
isMobile?: boolean;
|
|
3974
|
+
isMobileApp?: boolean;
|
|
3975
|
+
setDrawingAreaAvailable?: (arg1: boolean) => unknown;
|
|
3976
|
+
hintProgressColor?: string;
|
|
3977
|
+
canScrollPage?: boolean;
|
|
3978
|
+
editorChangeDelay?: number;
|
|
3979
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
3980
|
+
}> & {
|
|
3981
|
+
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
3982
|
+
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
3983
|
+
editorChangeDelay: NonNullable<import("@khanacademy/perseus").APIOptions["editorChangeDelay"]>;
|
|
3984
|
+
isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
|
|
3985
|
+
isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
|
|
3986
|
+
isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
|
|
3987
|
+
editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
|
|
3988
|
+
onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
|
|
3989
|
+
readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
|
|
3990
|
+
setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
|
|
3991
|
+
showAlignmentOptions: NonNullable<import("@khanacademy/perseus").APIOptions["showAlignmentOptions"]>;
|
|
3992
|
+
}>;
|
|
3993
|
+
keypadElement?: any;
|
|
3994
|
+
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3995
|
+
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3996
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3997
|
+
reviewMode: boolean;
|
|
3998
|
+
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3999
|
+
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
4000
|
+
userInput: PerseusGraphType;
|
|
4001
|
+
linterContext: import("@khanacademy/perseus-linter").LinterContextProps;
|
|
4002
|
+
containerSizeClass: import("../../../../perseus/src/util/sizing-utils").SizeClass;
|
|
4003
|
+
}): import("@khanacademy/perseus").Coord[];
|
|
4004
|
+
getLogarithmEquationString(props: {
|
|
4005
|
+
step: [number, number];
|
|
4006
|
+
gridStep?: [x: number, y: number];
|
|
4007
|
+
snapStep?: [x: number, y: number];
|
|
4008
|
+
backgroundImage?: PerseusImageBackground;
|
|
4009
|
+
markings: MarkingsType;
|
|
4010
|
+
labels: string[];
|
|
4011
|
+
labelLocation: AxisLabelLocation;
|
|
4012
|
+
showProtractor: boolean;
|
|
4013
|
+
showRuler?: boolean;
|
|
4014
|
+
showTooltips?: boolean;
|
|
4015
|
+
rulerLabel?: string;
|
|
4016
|
+
rulerTicks?: number;
|
|
4017
|
+
range: import("@khanacademy/perseus-core").GraphRange;
|
|
4018
|
+
showAxisArrows: ShowAxisArrows;
|
|
4019
|
+
graph: PerseusGraphType;
|
|
4020
|
+
correct?: PerseusGraphType;
|
|
4021
|
+
lockedFigures: LockedFigure[];
|
|
4022
|
+
fullGraphAriaLabel?: string;
|
|
4023
|
+
fullGraphAriaDescription?: string;
|
|
4024
|
+
} & {
|
|
4025
|
+
trackInteraction: (extraData?: Empty | undefined) => void;
|
|
4026
|
+
widgetId: string;
|
|
4027
|
+
widgetIndex: number;
|
|
4028
|
+
alignment: string | null | undefined;
|
|
4029
|
+
static: boolean | null | undefined;
|
|
4030
|
+
problemNum: number | null | undefined;
|
|
4031
|
+
apiOptions: Readonly<Readonly<{
|
|
4032
|
+
isArticle?: boolean;
|
|
4033
|
+
onFocusChange?: (newFocusPath: import("@khanacademy/perseus").FocusPath, oldFocusPath: import("@khanacademy/perseus").FocusPath, keypadHeight?: number, focusedElement?: HTMLElement) => unknown;
|
|
4034
|
+
showAlignmentOptions?: boolean;
|
|
4035
|
+
readOnly?: boolean;
|
|
4036
|
+
editingDisabled?: boolean;
|
|
4037
|
+
answerableCallback?: (arg1: boolean) => unknown;
|
|
4038
|
+
getAnotherHint?: () => unknown;
|
|
4039
|
+
interactionCallback?: (widgetData: {
|
|
4040
|
+
[widgetId: string]: any;
|
|
4041
|
+
}) => void;
|
|
4042
|
+
imagePlaceholder?: React.ReactNode;
|
|
4043
|
+
widgetPlaceholder?: React.ReactNode;
|
|
4044
|
+
baseElements?: {
|
|
4045
|
+
Link: React.ComponentType<any>;
|
|
4046
|
+
};
|
|
4047
|
+
imagePreloader?: (dimensions: import("../../../../perseus/src/types").Dimensions) => React.ReactNode;
|
|
4048
|
+
trackInteraction?: (args: {
|
|
4049
|
+
type: string;
|
|
4050
|
+
id: string;
|
|
4051
|
+
correct?: boolean;
|
|
4052
|
+
} & Partial<import("../../../../perseus/src/types").TrackingGradedGroupExtraArguments> & Partial<{
|
|
4053
|
+
visible: number;
|
|
4054
|
+
}>) => void;
|
|
4055
|
+
customKeypad?: boolean;
|
|
4056
|
+
nativeKeypadProxy?: (blur: () => void) => import("@khanacademy/math-input").KeypadAPI;
|
|
4057
|
+
isMobile?: boolean;
|
|
4058
|
+
isMobileApp?: boolean;
|
|
4059
|
+
setDrawingAreaAvailable?: (arg1: boolean) => unknown;
|
|
4060
|
+
hintProgressColor?: string;
|
|
4061
|
+
canScrollPage?: boolean;
|
|
4062
|
+
editorChangeDelay?: number;
|
|
4063
|
+
flags?: Record<"new-radio-widget" | "image-widget-upgrade-gif-controls" | "image-widget-upgrade-scale" | "interactive-graph-absolute-value" | "interactive-graph-tangent" | "interactive-graph-logarithm" | "interactive-graph-exponent" | "interactive-graph-vector", boolean>;
|
|
4064
|
+
}> & {
|
|
4065
|
+
baseElements: NonNullable<import("@khanacademy/perseus").APIOptions["baseElements"]>;
|
|
4066
|
+
canScrollPage: NonNullable<import("@khanacademy/perseus").APIOptions["canScrollPage"]>;
|
|
4067
|
+
editorChangeDelay: NonNullable<import("@khanacademy/perseus").APIOptions["editorChangeDelay"]>;
|
|
4068
|
+
isArticle: NonNullable<import("@khanacademy/perseus").APIOptions["isArticle"]>;
|
|
4069
|
+
isMobile: NonNullable<import("@khanacademy/perseus").APIOptions["isMobile"]>;
|
|
4070
|
+
isMobileApp: NonNullable<import("@khanacademy/perseus").APIOptions["isMobileApp"]>;
|
|
4071
|
+
editingDisabled: NonNullable<import("@khanacademy/perseus").APIOptions["editingDisabled"]>;
|
|
4072
|
+
onFocusChange: NonNullable<import("@khanacademy/perseus").APIOptions["onFocusChange"]>;
|
|
4073
|
+
readOnly: NonNullable<import("@khanacademy/perseus").APIOptions["readOnly"]>;
|
|
4074
|
+
setDrawingAreaAvailable: NonNullable<import("@khanacademy/perseus").APIOptions["setDrawingAreaAvailable"]>;
|
|
4075
|
+
showAlignmentOptions: NonNullable<import("@khanacademy/perseus").APIOptions["showAlignmentOptions"]>;
|
|
4076
|
+
}>;
|
|
4077
|
+
keypadElement?: any;
|
|
4078
|
+
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4079
|
+
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4080
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3913
4081
|
reviewMode: boolean;
|
|
3914
4082
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3915
4083
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -3993,7 +4161,7 @@ declare const InteractiveGraph: {
|
|
|
3993
4161
|
keypadElement?: any;
|
|
3994
4162
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3995
4163
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
3996
|
-
findWidgets:
|
|
4164
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
3997
4165
|
reviewMode: boolean;
|
|
3998
4166
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
3999
4167
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4077,7 +4245,7 @@ declare const InteractiveGraph: {
|
|
|
4077
4245
|
keypadElement?: any;
|
|
4078
4246
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4079
4247
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4080
|
-
findWidgets:
|
|
4248
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4081
4249
|
reviewMode: boolean;
|
|
4082
4250
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4083
4251
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4161,7 +4329,7 @@ declare const InteractiveGraph: {
|
|
|
4161
4329
|
keypadElement?: any;
|
|
4162
4330
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4163
4331
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4164
|
-
findWidgets:
|
|
4332
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4165
4333
|
reviewMode: boolean;
|
|
4166
4334
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4167
4335
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4245,7 +4413,7 @@ declare const InteractiveGraph: {
|
|
|
4245
4413
|
keypadElement?: any;
|
|
4246
4414
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4247
4415
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4248
|
-
findWidgets:
|
|
4416
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4249
4417
|
reviewMode: boolean;
|
|
4250
4418
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4251
4419
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4329,7 +4497,7 @@ declare const InteractiveGraph: {
|
|
|
4329
4497
|
keypadElement?: any;
|
|
4330
4498
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4331
4499
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4332
|
-
findWidgets:
|
|
4500
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4333
4501
|
reviewMode: boolean;
|
|
4334
4502
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4335
4503
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4413,7 +4581,7 @@ declare const InteractiveGraph: {
|
|
|
4413
4581
|
keypadElement?: any;
|
|
4414
4582
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4415
4583
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4416
|
-
findWidgets:
|
|
4584
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4417
4585
|
reviewMode: boolean;
|
|
4418
4586
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4419
4587
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4497,7 +4665,7 @@ declare const InteractiveGraph: {
|
|
|
4497
4665
|
keypadElement?: any;
|
|
4498
4666
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4499
4667
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4500
|
-
findWidgets:
|
|
4668
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4501
4669
|
reviewMode: boolean;
|
|
4502
4670
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4503
4671
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4581,7 +4749,7 @@ declare const InteractiveGraph: {
|
|
|
4581
4749
|
keypadElement?: any;
|
|
4582
4750
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4583
4751
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4584
|
-
findWidgets:
|
|
4752
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4585
4753
|
reviewMode: boolean;
|
|
4586
4754
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4587
4755
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4665,7 +4833,7 @@ declare const InteractiveGraph: {
|
|
|
4665
4833
|
keypadElement?: any;
|
|
4666
4834
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4667
4835
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4668
|
-
findWidgets:
|
|
4836
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4669
4837
|
reviewMode: boolean;
|
|
4670
4838
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4671
4839
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4749,7 +4917,7 @@ declare const InteractiveGraph: {
|
|
|
4749
4917
|
keypadElement?: any;
|
|
4750
4918
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4751
4919
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4752
|
-
findWidgets:
|
|
4920
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4753
4921
|
reviewMode: boolean;
|
|
4754
4922
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4755
4923
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|
|
@@ -4833,7 +5001,7 @@ declare const InteractiveGraph: {
|
|
|
4833
5001
|
keypadElement?: any;
|
|
4834
5002
|
onFocus: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4835
5003
|
onBlur: (blurPath: import("@khanacademy/perseus").FocusPath) => void;
|
|
4836
|
-
findWidgets:
|
|
5004
|
+
findWidgets: import("../../../../perseus/src/types").FindWidgetsFunction;
|
|
4837
5005
|
reviewMode: boolean;
|
|
4838
5006
|
showSolutions?: import("@khanacademy/perseus-core").ShowSolutions;
|
|
4839
5007
|
handleUserInput: (newUserInput: PerseusGraphType, cb?: () => void, silent?: boolean) => void;
|