@khanacademy/perseus-editor 22.0.1 → 23.0.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.js +6 -25
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +5 -24
- package/dist/index.js.map +1 -1
- package/dist/widgets/free-response-editor.d.ts +3 -3
- package/dist/widgets/interactive-graph-editor/interactive-graph-editor.d.ts +42 -0
- package/dist/widgets/label-image/behavior.d.ts +1 -4
- package/package.json +58 -58
|
@@ -7,13 +7,13 @@ type Props = PerseusFreeResponseWidgetOptions & {
|
|
|
7
7
|
declare class FreeResponseEditor extends React.Component<Props> {
|
|
8
8
|
static defaultProps: FreeResponseDefaultWidgetOptions;
|
|
9
9
|
static widgetName: "free-response";
|
|
10
|
-
serialize()
|
|
11
|
-
getSaveWarnings()
|
|
10
|
+
serialize: () => PerseusFreeResponseWidgetOptions;
|
|
11
|
+
getSaveWarnings: () => Array<string>;
|
|
12
12
|
handleUpdateCharacterLimit: ChangeEventHandler<HTMLInputElement>;
|
|
13
13
|
handleUpdateCriterion: (index: number, criterion: PerseusFreeResponseWidgetScoringCriterion) => void;
|
|
14
14
|
handleDeleteCriterion: (index: number) => void;
|
|
15
15
|
handleAddCriterion: () => void;
|
|
16
|
-
renderCriteriaList: () => React.
|
|
16
|
+
renderCriteriaList: () => React.ReactNode;
|
|
17
17
|
render(): React.ReactNode;
|
|
18
18
|
}
|
|
19
19
|
export default FreeResponseEditor;
|
|
@@ -10,6 +10,7 @@ declare const InteractiveGraph: {
|
|
|
10
10
|
backgroundImage?: PerseusImageBackground;
|
|
11
11
|
markings: MarkingsType;
|
|
12
12
|
labels: string[];
|
|
13
|
+
labelLocation: AxisLabelLocation;
|
|
13
14
|
showProtractor: boolean;
|
|
14
15
|
showRuler?: boolean;
|
|
15
16
|
showTooltips?: boolean;
|
|
@@ -36,6 +37,7 @@ declare const InteractiveGraph: {
|
|
|
36
37
|
backgroundImage?: PerseusImageBackground;
|
|
37
38
|
markings: MarkingsType;
|
|
38
39
|
labels: string[];
|
|
40
|
+
labelLocation: AxisLabelLocation;
|
|
39
41
|
showProtractor: boolean;
|
|
40
42
|
showRuler?: boolean;
|
|
41
43
|
showTooltips?: boolean;
|
|
@@ -60,6 +62,7 @@ declare const InteractiveGraph: {
|
|
|
60
62
|
backgroundImage?: PerseusImageBackground;
|
|
61
63
|
markings: MarkingsType;
|
|
62
64
|
labels: string[];
|
|
65
|
+
labelLocation: AxisLabelLocation;
|
|
63
66
|
showProtractor: boolean;
|
|
64
67
|
showRuler?: boolean;
|
|
65
68
|
showTooltips?: boolean;
|
|
@@ -81,6 +84,7 @@ declare const InteractiveGraph: {
|
|
|
81
84
|
backgroundImage?: PerseusImageBackground;
|
|
82
85
|
markings: MarkingsType;
|
|
83
86
|
labels: string[];
|
|
87
|
+
labelLocation: AxisLabelLocation;
|
|
84
88
|
showProtractor: boolean;
|
|
85
89
|
showRuler?: boolean;
|
|
86
90
|
showTooltips?: boolean;
|
|
@@ -100,6 +104,7 @@ declare const InteractiveGraph: {
|
|
|
100
104
|
backgroundImage?: PerseusImageBackground;
|
|
101
105
|
markings: MarkingsType;
|
|
102
106
|
labels: string[];
|
|
107
|
+
labelLocation: AxisLabelLocation;
|
|
103
108
|
showProtractor: boolean;
|
|
104
109
|
showRuler?: boolean;
|
|
105
110
|
showTooltips?: boolean;
|
|
@@ -121,6 +126,7 @@ declare const InteractiveGraph: {
|
|
|
121
126
|
backgroundImage?: PerseusImageBackground;
|
|
122
127
|
markings: MarkingsType;
|
|
123
128
|
labels: string[];
|
|
129
|
+
labelLocation: AxisLabelLocation;
|
|
124
130
|
showProtractor: boolean;
|
|
125
131
|
showRuler?: boolean;
|
|
126
132
|
showTooltips?: boolean;
|
|
@@ -140,6 +146,7 @@ declare const InteractiveGraph: {
|
|
|
140
146
|
backgroundImage?: PerseusImageBackground;
|
|
141
147
|
markings: MarkingsType;
|
|
142
148
|
labels: string[];
|
|
149
|
+
labelLocation: AxisLabelLocation;
|
|
143
150
|
showProtractor: boolean;
|
|
144
151
|
showRuler?: boolean;
|
|
145
152
|
showTooltips?: boolean;
|
|
@@ -159,6 +166,7 @@ declare const InteractiveGraph: {
|
|
|
159
166
|
backgroundImage?: PerseusImageBackground;
|
|
160
167
|
markings: MarkingsType;
|
|
161
168
|
labels: string[];
|
|
169
|
+
labelLocation: AxisLabelLocation;
|
|
162
170
|
showProtractor: boolean;
|
|
163
171
|
showRuler?: boolean;
|
|
164
172
|
showTooltips?: boolean;
|
|
@@ -178,6 +186,7 @@ declare const InteractiveGraph: {
|
|
|
178
186
|
backgroundImage?: PerseusImageBackground;
|
|
179
187
|
markings: MarkingsType;
|
|
180
188
|
labels: string[];
|
|
189
|
+
labelLocation: AxisLabelLocation;
|
|
181
190
|
showProtractor: boolean;
|
|
182
191
|
showRuler?: boolean;
|
|
183
192
|
showTooltips?: boolean;
|
|
@@ -198,6 +207,7 @@ declare const InteractiveGraph: {
|
|
|
198
207
|
backgroundImage?: PerseusImageBackground;
|
|
199
208
|
markings: MarkingsType;
|
|
200
209
|
labels: string[];
|
|
210
|
+
labelLocation: AxisLabelLocation;
|
|
201
211
|
showProtractor: boolean;
|
|
202
212
|
showRuler?: boolean;
|
|
203
213
|
showTooltips?: boolean;
|
|
@@ -224,6 +234,7 @@ declare const InteractiveGraph: {
|
|
|
224
234
|
backgroundImage?: PerseusImageBackground;
|
|
225
235
|
markings: MarkingsType;
|
|
226
236
|
labels: string[];
|
|
237
|
+
labelLocation: AxisLabelLocation;
|
|
227
238
|
showProtractor: boolean;
|
|
228
239
|
showRuler?: boolean;
|
|
229
240
|
showTooltips?: boolean;
|
|
@@ -248,6 +259,7 @@ declare const InteractiveGraph: {
|
|
|
248
259
|
backgroundImage?: PerseusImageBackground;
|
|
249
260
|
markings: MarkingsType;
|
|
250
261
|
labels: string[];
|
|
262
|
+
labelLocation: AxisLabelLocation;
|
|
251
263
|
showProtractor: boolean;
|
|
252
264
|
showRuler?: boolean;
|
|
253
265
|
showTooltips?: boolean;
|
|
@@ -269,6 +281,7 @@ declare const InteractiveGraph: {
|
|
|
269
281
|
backgroundImage?: PerseusImageBackground;
|
|
270
282
|
markings: MarkingsType;
|
|
271
283
|
labels: string[];
|
|
284
|
+
labelLocation: AxisLabelLocation;
|
|
272
285
|
showProtractor: boolean;
|
|
273
286
|
showRuler?: boolean;
|
|
274
287
|
showTooltips?: boolean;
|
|
@@ -288,6 +301,7 @@ declare const InteractiveGraph: {
|
|
|
288
301
|
backgroundImage?: PerseusImageBackground;
|
|
289
302
|
markings: MarkingsType;
|
|
290
303
|
labels: string[];
|
|
304
|
+
labelLocation: AxisLabelLocation;
|
|
291
305
|
showProtractor: boolean;
|
|
292
306
|
showRuler?: boolean;
|
|
293
307
|
showTooltips?: boolean;
|
|
@@ -309,6 +323,7 @@ declare const InteractiveGraph: {
|
|
|
309
323
|
backgroundImage?: PerseusImageBackground;
|
|
310
324
|
markings: MarkingsType;
|
|
311
325
|
labels: string[];
|
|
326
|
+
labelLocation: AxisLabelLocation;
|
|
312
327
|
showProtractor: boolean;
|
|
313
328
|
showRuler?: boolean;
|
|
314
329
|
showTooltips?: boolean;
|
|
@@ -328,6 +343,7 @@ declare const InteractiveGraph: {
|
|
|
328
343
|
backgroundImage?: PerseusImageBackground;
|
|
329
344
|
markings: MarkingsType;
|
|
330
345
|
labels: string[];
|
|
346
|
+
labelLocation: AxisLabelLocation;
|
|
331
347
|
showProtractor: boolean;
|
|
332
348
|
showRuler?: boolean;
|
|
333
349
|
showTooltips?: boolean;
|
|
@@ -347,6 +363,7 @@ declare const InteractiveGraph: {
|
|
|
347
363
|
backgroundImage?: PerseusImageBackground;
|
|
348
364
|
markings: MarkingsType;
|
|
349
365
|
labels: string[];
|
|
366
|
+
labelLocation: AxisLabelLocation;
|
|
350
367
|
showProtractor: boolean;
|
|
351
368
|
showRuler?: boolean;
|
|
352
369
|
showTooltips?: boolean;
|
|
@@ -366,6 +383,7 @@ declare const InteractiveGraph: {
|
|
|
366
383
|
backgroundImage?: PerseusImageBackground;
|
|
367
384
|
markings: MarkingsType;
|
|
368
385
|
labels: string[];
|
|
386
|
+
labelLocation: AxisLabelLocation;
|
|
369
387
|
showProtractor: boolean;
|
|
370
388
|
showRuler?: boolean;
|
|
371
389
|
showTooltips?: boolean;
|
|
@@ -381,6 +399,7 @@ declare const InteractiveGraph: {
|
|
|
381
399
|
};
|
|
382
400
|
defaultProps: {
|
|
383
401
|
labels: string[];
|
|
402
|
+
labelLocation: AxisLabelLocation;
|
|
384
403
|
range: import("@khanacademy/perseus-core").GraphRange;
|
|
385
404
|
step: [number, number];
|
|
386
405
|
backgroundImage: PerseusImageBackground | undefined;
|
|
@@ -396,6 +415,7 @@ declare const InteractiveGraph: {
|
|
|
396
415
|
backgroundImage?: PerseusImageBackground;
|
|
397
416
|
markings: MarkingsType;
|
|
398
417
|
labels: string[];
|
|
418
|
+
labelLocation: AxisLabelLocation;
|
|
399
419
|
showProtractor: boolean;
|
|
400
420
|
showRuler?: boolean;
|
|
401
421
|
showTooltips?: boolean;
|
|
@@ -415,6 +435,7 @@ declare const InteractiveGraph: {
|
|
|
415
435
|
backgroundImage?: PerseusImageBackground;
|
|
416
436
|
markings: MarkingsType;
|
|
417
437
|
labels: string[];
|
|
438
|
+
labelLocation: AxisLabelLocation;
|
|
418
439
|
showProtractor: boolean;
|
|
419
440
|
showRuler?: boolean;
|
|
420
441
|
showTooltips?: boolean;
|
|
@@ -434,6 +455,7 @@ declare const InteractiveGraph: {
|
|
|
434
455
|
backgroundImage?: PerseusImageBackground;
|
|
435
456
|
markings: MarkingsType;
|
|
436
457
|
labels: string[];
|
|
458
|
+
labelLocation: AxisLabelLocation;
|
|
437
459
|
showProtractor: boolean;
|
|
438
460
|
showRuler?: boolean;
|
|
439
461
|
showTooltips?: boolean;
|
|
@@ -453,6 +475,7 @@ declare const InteractiveGraph: {
|
|
|
453
475
|
backgroundImage?: PerseusImageBackground;
|
|
454
476
|
markings: MarkingsType;
|
|
455
477
|
labels: string[];
|
|
478
|
+
labelLocation: AxisLabelLocation;
|
|
456
479
|
showProtractor: boolean;
|
|
457
480
|
showRuler?: boolean;
|
|
458
481
|
showTooltips?: boolean;
|
|
@@ -472,6 +495,7 @@ declare const InteractiveGraph: {
|
|
|
472
495
|
backgroundImage?: PerseusImageBackground;
|
|
473
496
|
markings: MarkingsType;
|
|
474
497
|
labels: string[];
|
|
498
|
+
labelLocation: AxisLabelLocation;
|
|
475
499
|
showProtractor: boolean;
|
|
476
500
|
showRuler?: boolean;
|
|
477
501
|
showTooltips?: boolean;
|
|
@@ -491,6 +515,7 @@ declare const InteractiveGraph: {
|
|
|
491
515
|
backgroundImage?: PerseusImageBackground;
|
|
492
516
|
markings: MarkingsType;
|
|
493
517
|
labels: string[];
|
|
518
|
+
labelLocation: AxisLabelLocation;
|
|
494
519
|
showProtractor: boolean;
|
|
495
520
|
showRuler?: boolean;
|
|
496
521
|
showTooltips?: boolean;
|
|
@@ -511,6 +536,7 @@ declare const InteractiveGraph: {
|
|
|
511
536
|
backgroundImage?: PerseusImageBackground;
|
|
512
537
|
markings: MarkingsType;
|
|
513
538
|
labels: string[];
|
|
539
|
+
labelLocation: AxisLabelLocation;
|
|
514
540
|
showProtractor: boolean;
|
|
515
541
|
showRuler?: boolean;
|
|
516
542
|
showTooltips?: boolean;
|
|
@@ -530,6 +556,7 @@ declare const InteractiveGraph: {
|
|
|
530
556
|
backgroundImage?: PerseusImageBackground;
|
|
531
557
|
markings: MarkingsType;
|
|
532
558
|
labels: string[];
|
|
559
|
+
labelLocation: AxisLabelLocation;
|
|
533
560
|
showProtractor: boolean;
|
|
534
561
|
showRuler?: boolean;
|
|
535
562
|
showTooltips?: boolean;
|
|
@@ -550,6 +577,7 @@ declare const InteractiveGraph: {
|
|
|
550
577
|
backgroundImage?: PerseusImageBackground;
|
|
551
578
|
markings: MarkingsType;
|
|
552
579
|
labels: string[];
|
|
580
|
+
labelLocation: AxisLabelLocation;
|
|
553
581
|
showProtractor: boolean;
|
|
554
582
|
showRuler?: boolean;
|
|
555
583
|
showTooltips?: boolean;
|
|
@@ -569,6 +597,7 @@ declare const InteractiveGraph: {
|
|
|
569
597
|
backgroundImage?: PerseusImageBackground;
|
|
570
598
|
markings: MarkingsType;
|
|
571
599
|
labels: string[];
|
|
600
|
+
labelLocation: AxisLabelLocation;
|
|
572
601
|
showProtractor: boolean;
|
|
573
602
|
showRuler?: boolean;
|
|
574
603
|
showTooltips?: boolean;
|
|
@@ -588,6 +617,7 @@ declare const InteractiveGraph: {
|
|
|
588
617
|
backgroundImage?: PerseusImageBackground;
|
|
589
618
|
markings: MarkingsType;
|
|
590
619
|
labels: string[];
|
|
620
|
+
labelLocation: AxisLabelLocation;
|
|
591
621
|
showProtractor: boolean;
|
|
592
622
|
showRuler?: boolean;
|
|
593
623
|
showTooltips?: boolean;
|
|
@@ -607,6 +637,7 @@ declare const InteractiveGraph: {
|
|
|
607
637
|
backgroundImage?: PerseusImageBackground;
|
|
608
638
|
markings: MarkingsType;
|
|
609
639
|
labels: string[];
|
|
640
|
+
labelLocation: AxisLabelLocation;
|
|
610
641
|
showProtractor: boolean;
|
|
611
642
|
showRuler?: boolean;
|
|
612
643
|
showTooltips?: boolean;
|
|
@@ -626,6 +657,7 @@ declare const InteractiveGraph: {
|
|
|
626
657
|
backgroundImage?: PerseusImageBackground;
|
|
627
658
|
markings: MarkingsType;
|
|
628
659
|
labels: string[];
|
|
660
|
+
labelLocation: AxisLabelLocation;
|
|
629
661
|
showProtractor: boolean;
|
|
630
662
|
showRuler?: boolean;
|
|
631
663
|
showTooltips?: boolean;
|
|
@@ -645,6 +677,7 @@ declare const InteractiveGraph: {
|
|
|
645
677
|
backgroundImage?: PerseusImageBackground;
|
|
646
678
|
markings: MarkingsType;
|
|
647
679
|
labels: string[];
|
|
680
|
+
labelLocation: AxisLabelLocation;
|
|
648
681
|
showProtractor: boolean;
|
|
649
682
|
showRuler?: boolean;
|
|
650
683
|
showTooltips?: boolean;
|
|
@@ -664,6 +697,7 @@ declare const InteractiveGraph: {
|
|
|
664
697
|
backgroundImage?: PerseusImageBackground;
|
|
665
698
|
markings: MarkingsType;
|
|
666
699
|
labels: string[];
|
|
700
|
+
labelLocation: AxisLabelLocation;
|
|
667
701
|
showProtractor: boolean;
|
|
668
702
|
showRuler?: boolean;
|
|
669
703
|
showTooltips?: boolean;
|
|
@@ -683,6 +717,7 @@ declare const InteractiveGraph: {
|
|
|
683
717
|
backgroundImage?: PerseusImageBackground;
|
|
684
718
|
markings: MarkingsType;
|
|
685
719
|
labels: string[];
|
|
720
|
+
labelLocation: AxisLabelLocation;
|
|
686
721
|
showProtractor: boolean;
|
|
687
722
|
showRuler?: boolean;
|
|
688
723
|
showTooltips?: boolean;
|
|
@@ -702,6 +737,7 @@ declare const InteractiveGraph: {
|
|
|
702
737
|
backgroundImage?: PerseusImageBackground;
|
|
703
738
|
markings: MarkingsType;
|
|
704
739
|
labels: string[];
|
|
740
|
+
labelLocation: AxisLabelLocation;
|
|
705
741
|
showProtractor: boolean;
|
|
706
742
|
showRuler?: boolean;
|
|
707
743
|
showTooltips?: boolean;
|
|
@@ -721,6 +757,7 @@ declare const InteractiveGraph: {
|
|
|
721
757
|
backgroundImage?: PerseusImageBackground;
|
|
722
758
|
markings: MarkingsType;
|
|
723
759
|
labels: string[];
|
|
760
|
+
labelLocation: AxisLabelLocation;
|
|
724
761
|
showProtractor: boolean;
|
|
725
762
|
showRuler?: boolean;
|
|
726
763
|
showTooltips?: boolean;
|
|
@@ -740,6 +777,7 @@ declare const InteractiveGraph: {
|
|
|
740
777
|
backgroundImage?: PerseusImageBackground;
|
|
741
778
|
markings: MarkingsType;
|
|
742
779
|
labels: string[];
|
|
780
|
+
labelLocation: AxisLabelLocation;
|
|
743
781
|
showProtractor: boolean;
|
|
744
782
|
showRuler?: boolean;
|
|
745
783
|
showTooltips?: boolean;
|
|
@@ -759,6 +797,7 @@ declare const InteractiveGraph: {
|
|
|
759
797
|
backgroundImage?: PerseusImageBackground;
|
|
760
798
|
markings: MarkingsType;
|
|
761
799
|
labels: string[];
|
|
800
|
+
labelLocation: AxisLabelLocation;
|
|
762
801
|
showProtractor: boolean;
|
|
763
802
|
showRuler?: boolean;
|
|
764
803
|
showTooltips?: boolean;
|
|
@@ -778,6 +817,7 @@ declare const InteractiveGraph: {
|
|
|
778
817
|
backgroundImage?: PerseusImageBackground;
|
|
779
818
|
markings: MarkingsType;
|
|
780
819
|
labels: string[];
|
|
820
|
+
labelLocation: AxisLabelLocation;
|
|
781
821
|
showProtractor: boolean;
|
|
782
822
|
showRuler?: boolean;
|
|
783
823
|
showTooltips?: boolean;
|
|
@@ -797,6 +837,7 @@ declare const InteractiveGraph: {
|
|
|
797
837
|
backgroundImage?: PerseusImageBackground;
|
|
798
838
|
markings: MarkingsType;
|
|
799
839
|
labels: string[];
|
|
840
|
+
labelLocation: AxisLabelLocation;
|
|
800
841
|
showProtractor: boolean;
|
|
801
842
|
showRuler?: boolean;
|
|
802
843
|
showTooltips?: boolean;
|
|
@@ -816,6 +857,7 @@ declare const InteractiveGraph: {
|
|
|
816
857
|
backgroundImage?: PerseusImageBackground;
|
|
817
858
|
markings: MarkingsType;
|
|
818
859
|
labels: string[];
|
|
860
|
+
labelLocation: AxisLabelLocation;
|
|
819
861
|
showProtractor: boolean;
|
|
820
862
|
showRuler?: boolean;
|
|
821
863
|
showTooltips?: boolean;
|
|
@@ -2,16 +2,13 @@
|
|
|
2
2
|
* Controlled component to display and change widget options.
|
|
3
3
|
*/
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
type PreferredPopoverDirection = "NONE" | "UP" | "DOWN" | "LEFT" | "RIGHT";
|
|
6
5
|
type Props = {
|
|
7
6
|
multipleAnswers: boolean;
|
|
8
7
|
hideChoicesFromInstructions: boolean;
|
|
9
|
-
preferredPopoverDirection: PreferredPopoverDirection;
|
|
10
8
|
onChange: (options: {
|
|
11
9
|
multipleAnswers?: boolean;
|
|
12
10
|
hideChoicesFromInstructions?: boolean;
|
|
13
|
-
preferredPopoverDirection?: PreferredPopoverDirection;
|
|
14
11
|
}) => void;
|
|
15
12
|
};
|
|
16
|
-
declare const Behavior: ({ multipleAnswers, hideChoicesFromInstructions,
|
|
13
|
+
declare const Behavior: ({ multipleAnswers, hideChoicesFromInstructions, onChange, }: Props) => React.ReactElement;
|
|
17
14
|
export default Behavior;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Perseus editors",
|
|
4
4
|
"author": "Khan Academy",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "
|
|
6
|
+
"version": "23.0.1",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
@@ -33,74 +33,74 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"katex": "0.11.1",
|
|
35
35
|
"mafs": "^0.19.0",
|
|
36
|
-
"tiny-invariant": "
|
|
37
|
-
"@khanacademy/kas": "2.0.
|
|
38
|
-
"@khanacademy/keypad-context": "3.0.
|
|
39
|
-
"@khanacademy/kmath": "2.0.
|
|
40
|
-
"@khanacademy/perseus-linter": "3.0.
|
|
41
|
-
"@khanacademy/math-input": "
|
|
42
|
-
"@khanacademy/perseus
|
|
43
|
-
"@khanacademy/perseus": "
|
|
44
|
-
"@khanacademy/perseus-score": "7.0.
|
|
45
|
-
"@khanacademy/
|
|
46
|
-
"@khanacademy/
|
|
36
|
+
"tiny-invariant": "1.3.1",
|
|
37
|
+
"@khanacademy/kas": "2.0.5",
|
|
38
|
+
"@khanacademy/keypad-context": "3.0.12",
|
|
39
|
+
"@khanacademy/kmath": "2.0.12",
|
|
40
|
+
"@khanacademy/perseus-linter": "3.0.12",
|
|
41
|
+
"@khanacademy/math-input": "26.0.1",
|
|
42
|
+
"@khanacademy/perseus": "64.0.0",
|
|
43
|
+
"@khanacademy/perseus-core": "13.0.0",
|
|
44
|
+
"@khanacademy/perseus-score": "7.0.2",
|
|
45
|
+
"@khanacademy/perseus-utils": "2.0.4",
|
|
46
|
+
"@khanacademy/pure-markdown": "2.0.5"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@khanacademy/mathjax-renderer": "
|
|
50
|
-
"@khanacademy/wonder-blocks-accordion": "3.1.
|
|
51
|
-
"@khanacademy/wonder-blocks-banner": "4.1.
|
|
52
|
-
"@khanacademy/wonder-blocks-button": "10.0.
|
|
53
|
-
"@khanacademy/wonder-blocks-clickable": "7.1.
|
|
54
|
-
"@khanacademy/wonder-blocks-core": "12.
|
|
55
|
-
"@khanacademy/wonder-blocks-dropdown": "10.1.
|
|
56
|
-
"@khanacademy/wonder-blocks-form": "7.1.
|
|
57
|
-
"@khanacademy/wonder-blocks-icon": "5.1.
|
|
58
|
-
"@khanacademy/wonder-blocks-icon-button": "10.
|
|
59
|
-
"@khanacademy/wonder-blocks-labeled-field": "3.0.
|
|
60
|
-
"@khanacademy/wonder-blocks-layout": "3.1.
|
|
61
|
-
"@khanacademy/wonder-blocks-pill": "3.1.
|
|
62
|
-
"@khanacademy/wonder-blocks-switch": "3.2.
|
|
49
|
+
"@khanacademy/mathjax-renderer": "3.0.0",
|
|
50
|
+
"@khanacademy/wonder-blocks-accordion": "3.1.18",
|
|
51
|
+
"@khanacademy/wonder-blocks-banner": "4.1.21",
|
|
52
|
+
"@khanacademy/wonder-blocks-button": "10.0.5",
|
|
53
|
+
"@khanacademy/wonder-blocks-clickable": "7.1.5",
|
|
54
|
+
"@khanacademy/wonder-blocks-core": "12.3.0",
|
|
55
|
+
"@khanacademy/wonder-blocks-dropdown": "10.1.5",
|
|
56
|
+
"@khanacademy/wonder-blocks-form": "7.1.18",
|
|
57
|
+
"@khanacademy/wonder-blocks-icon": "5.1.4",
|
|
58
|
+
"@khanacademy/wonder-blocks-icon-button": "10.2.1",
|
|
59
|
+
"@khanacademy/wonder-blocks-labeled-field": "3.0.13",
|
|
60
|
+
"@khanacademy/wonder-blocks-layout": "3.1.16",
|
|
61
|
+
"@khanacademy/wonder-blocks-pill": "3.1.18",
|
|
62
|
+
"@khanacademy/wonder-blocks-switch": "3.2.9",
|
|
63
63
|
"@khanacademy/wonder-blocks-timing": "7.0.2",
|
|
64
|
-
"@khanacademy/wonder-blocks-tokens": "10.
|
|
65
|
-
"@khanacademy/wonder-blocks-tooltip": "4.1.
|
|
66
|
-
"@khanacademy/wonder-blocks-typography": "
|
|
64
|
+
"@khanacademy/wonder-blocks-tokens": "10.4.0",
|
|
65
|
+
"@khanacademy/wonder-blocks-tooltip": "4.1.20",
|
|
66
|
+
"@khanacademy/wonder-blocks-typography": "4.2.0",
|
|
67
67
|
"@khanacademy/wonder-stuff-core": "1.5.4",
|
|
68
|
-
"@phosphor-icons/core": "
|
|
69
|
-
"aphrodite": "
|
|
68
|
+
"@phosphor-icons/core": "2.0.2",
|
|
69
|
+
"aphrodite": "1.2.5",
|
|
70
70
|
"classnames": "1.1.4",
|
|
71
|
-
"jquery": "
|
|
71
|
+
"jquery": "2.1.1",
|
|
72
72
|
"prop-types": "15.6.1",
|
|
73
|
-
"react": "
|
|
74
|
-
"react-dom": "
|
|
75
|
-
"underscore": "
|
|
76
|
-
"jsdiff": "1.0.
|
|
77
|
-
"perseus-build-settings": "0.6.
|
|
73
|
+
"react": "18.2.0",
|
|
74
|
+
"react-dom": "18.2.0",
|
|
75
|
+
"underscore": "1.4.4",
|
|
76
|
+
"jsdiff": "1.0.2",
|
|
77
|
+
"perseus-build-settings": "0.6.2"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
|
-
"@khanacademy/mathjax-renderer": "^
|
|
81
|
-
"@khanacademy/wonder-blocks-accordion": "3.1.
|
|
82
|
-
"@khanacademy/wonder-blocks-banner": "4.1.
|
|
83
|
-
"@khanacademy/wonder-blocks-button": "10.0.
|
|
84
|
-
"@khanacademy/wonder-blocks-clickable": "7.1.
|
|
85
|
-
"@khanacademy/wonder-blocks-core": "12.
|
|
86
|
-
"@khanacademy/wonder-blocks-dropdown": "10.1.
|
|
87
|
-
"@khanacademy/wonder-blocks-form": "7.1.
|
|
88
|
-
"@khanacademy/wonder-blocks-icon": "5.1.
|
|
89
|
-
"@khanacademy/wonder-blocks-icon-button": "10.
|
|
90
|
-
"@khanacademy/wonder-blocks-labeled-field": "3.0.
|
|
91
|
-
"@khanacademy/wonder-blocks-layout": "3.1.
|
|
92
|
-
"@khanacademy/wonder-blocks-pill": "3.1.
|
|
93
|
-
"@khanacademy/wonder-blocks-switch": "3.2.
|
|
94
|
-
"@khanacademy/wonder-blocks-timing": "7.0.2",
|
|
95
|
-
"@khanacademy/wonder-blocks-tokens": "10.
|
|
96
|
-
"@khanacademy/wonder-blocks-tooltip": "4.1.
|
|
97
|
-
"@khanacademy/wonder-blocks-typography": "
|
|
98
|
-
"@khanacademy/wonder-stuff-core": "1.5.4",
|
|
80
|
+
"@khanacademy/mathjax-renderer": "^3.0.0",
|
|
81
|
+
"@khanacademy/wonder-blocks-accordion": "^3.1.18",
|
|
82
|
+
"@khanacademy/wonder-blocks-banner": "^4.1.21",
|
|
83
|
+
"@khanacademy/wonder-blocks-button": "^10.0.5",
|
|
84
|
+
"@khanacademy/wonder-blocks-clickable": "^7.1.5",
|
|
85
|
+
"@khanacademy/wonder-blocks-core": "^12.3.0",
|
|
86
|
+
"@khanacademy/wonder-blocks-dropdown": "^10.1.5",
|
|
87
|
+
"@khanacademy/wonder-blocks-form": "^7.1.18",
|
|
88
|
+
"@khanacademy/wonder-blocks-icon": "^5.1.4",
|
|
89
|
+
"@khanacademy/wonder-blocks-icon-button": "^10.2.1",
|
|
90
|
+
"@khanacademy/wonder-blocks-labeled-field": "^3.0.13",
|
|
91
|
+
"@khanacademy/wonder-blocks-layout": "^3.1.16",
|
|
92
|
+
"@khanacademy/wonder-blocks-pill": "^3.1.18",
|
|
93
|
+
"@khanacademy/wonder-blocks-switch": "^3.2.9",
|
|
94
|
+
"@khanacademy/wonder-blocks-timing": "^7.0.2",
|
|
95
|
+
"@khanacademy/wonder-blocks-tokens": "^10.4.0",
|
|
96
|
+
"@khanacademy/wonder-blocks-tooltip": "^4.1.20",
|
|
97
|
+
"@khanacademy/wonder-blocks-typography": "^4.2.0",
|
|
98
|
+
"@khanacademy/wonder-stuff-core": "^1.5.4",
|
|
99
99
|
"@phosphor-icons/core": "^2.0.2",
|
|
100
100
|
"aphrodite": "^1.2.5",
|
|
101
|
-
"classnames": "1.1.4",
|
|
101
|
+
"classnames": "^1.1.4",
|
|
102
102
|
"jquery": "^2.1.1",
|
|
103
|
-
"prop-types": "15.6.1",
|
|
103
|
+
"prop-types": "^15.6.1",
|
|
104
104
|
"react": "^18.2.0",
|
|
105
105
|
"react-dom": "^18.2.0",
|
|
106
106
|
"underscore": "^1.4.4"
|