performanceresultscreens 0.0.34 → 0.0.35

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.
Files changed (39) hide show
  1. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswerV1.js +11 -12
  2. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswerV1.js.map +1 -1
  3. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.d.ts +0 -1
  4. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js +30 -31
  5. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js.map +1 -1
  6. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.stories.js +0 -1
  7. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.stories.js.map +1 -1
  8. package/dist/components/Molecules/RecapNode/ContentView.js +2 -2
  9. package/dist/components/Molecules/RecapNode/ContentView.js.map +1 -1
  10. package/dist/components/Molecules/RecapNode/SectionView.js +68 -10
  11. package/dist/components/Molecules/RecapNode/SectionView.js.map +1 -1
  12. package/dist/components/Molecules/RecapNode/VideoView.d.ts +6 -1
  13. package/dist/components/Molecules/RecapNode/VideoView.js +47 -6
  14. package/dist/components/Molecules/RecapNode/VideoView.js.map +1 -1
  15. package/dist/components/Organisms/FlashCardNode/FlashCardNode.js +2 -2
  16. package/dist/components/Organisms/FlashCardNode/FlashCardNode.js.map +1 -1
  17. package/dist/components/Organisms/FlashCardNode/FlashcardContainer.d.ts +2 -1
  18. package/dist/components/Organisms/FlashCardNode/FlashcardContainer.js +6 -26
  19. package/dist/components/Organisms/FlashCardNode/FlashcardContainer.js.map +1 -1
  20. package/dist/components/Organisms/FlashCardNode/IconBar.d.ts +3 -1
  21. package/dist/components/Organisms/FlashCardNode/IconBar.js +3 -3
  22. package/dist/components/Organisms/FlashCardNode/IconBar.js.map +1 -1
  23. package/dist/components/Organisms/FlashCardNode/MobileAccordionView.d.ts +2 -1
  24. package/dist/components/Organisms/FlashCardNode/MobileAccordionView.js +4 -4
  25. package/dist/components/Organisms/FlashCardNode/MobileAccordionView.js.map +1 -1
  26. package/dist/components/Organisms/RecapGraph/Example.stories.js +19 -7
  27. package/dist/components/Organisms/RecapGraph/Example.stories.js.map +1 -1
  28. package/dist/components/Organisms/RecapGraph/Reactgraphflow.d.ts +3 -2
  29. package/dist/components/Organisms/RecapGraph/Reactgraphflow.js +49 -8
  30. package/dist/components/Organisms/RecapGraph/Reactgraphflow.js.map +1 -1
  31. package/dist/components/Organisms/RecapGraph/useRecapGraphLogic.d.ts +1 -1
  32. package/dist/components/Organisms/RecapGraph/useRecapGraphLogic.js +11 -8
  33. package/dist/components/Organisms/RecapGraph/useRecapGraphLogic.js.map +1 -1
  34. package/dist/utils/RecapData.d.ts +573 -2
  35. package/dist/utils/RecapData.js +1766 -607
  36. package/dist/utils/RecapData.js.map +1 -1
  37. package/dist/utils/contentUtils.js +11 -4
  38. package/dist/utils/contentUtils.js.map +1 -1
  39. package/package.json +2 -2
@@ -30,6 +30,539 @@ export namespace jsonData {
30
30
  }[];
31
31
  }
32
32
  export const contentArrays: ({
33
+ _id: string;
34
+ content: string;
35
+ type: string;
36
+ description: string;
37
+ contentType: string;
38
+ title: string;
39
+ freezeRefCount: number;
40
+ curriculum: number[];
41
+ grade: number[];
42
+ subject: number[];
43
+ topic: string[];
44
+ subTopic: never[];
45
+ knowledgeCell: string[];
46
+ transcript: string;
47
+ glossary: never[];
48
+ recap: {
49
+ definition: {
50
+ title: string;
51
+ description: string;
52
+ }[];
53
+ video: {
54
+ title: string;
55
+ description: string;
56
+ }[];
57
+ theorem: {
58
+ title: string;
59
+ description: string;
60
+ }[];
61
+ formula: {
62
+ title: string;
63
+ description: string;
64
+ }[];
65
+ definitions: {
66
+ title: string;
67
+ description: string;
68
+ }[];
69
+ laws: {
70
+ title: string;
71
+ description: string;
72
+ }[];
73
+ applications: {
74
+ title: string;
75
+ description: string;
76
+ }[];
77
+ processes: {
78
+ title: string;
79
+ description: string;
80
+ }[];
81
+ keyConcept: {
82
+ title: string;
83
+ description: string;
84
+ }[];
85
+ timeline: {
86
+ title: string;
87
+ description: string;
88
+ }[];
89
+ _id?: undefined;
90
+ content?: undefined;
91
+ type?: undefined;
92
+ description?: undefined;
93
+ contentType?: undefined;
94
+ title?: undefined;
95
+ freezeRefCount?: undefined;
96
+ curriculum?: undefined;
97
+ grade?: undefined;
98
+ subject?: undefined;
99
+ topic?: undefined;
100
+ subTopic?: undefined;
101
+ knowledgeCell?: undefined;
102
+ transcript?: undefined;
103
+ glossary?: undefined;
104
+ recap?: undefined;
105
+ videoThumbnail?: undefined;
106
+ createdAt?: undefined;
107
+ updatedAt?: undefined;
108
+ __v?: undefined;
109
+ theme?: undefined;
110
+ equations?: undefined;
111
+ summary?: undefined;
112
+ properties?: undefined;
113
+ keyConcepts?: undefined;
114
+ theorems?: undefined;
115
+ reactions?: undefined;
116
+ formulae?: undefined;
117
+ centralIdea?: undefined;
118
+ poeticDevices?: undefined;
119
+ language?: undefined;
120
+ vocabulary?: undefined;
121
+ };
122
+ videoThumbnail: string;
123
+ createdAt: string;
124
+ updatedAt: string;
125
+ __v: number;
126
+ } | {
127
+ _id: string;
128
+ content: string;
129
+ type: string;
130
+ description: string;
131
+ contentType: string;
132
+ title: string;
133
+ freezeRefCount: number;
134
+ curriculum: number[];
135
+ grade: number[];
136
+ subject: number[];
137
+ topic: string[];
138
+ subTopic: never[];
139
+ knowledgeCell: string[];
140
+ transcript: string;
141
+ glossary: never[];
142
+ recap: {
143
+ _id: string;
144
+ content: string;
145
+ type: string;
146
+ description: string;
147
+ contentType: string;
148
+ title: string;
149
+ freezeRefCount: number;
150
+ curriculum: string[];
151
+ grade: string[];
152
+ subject: string[];
153
+ topic: string[];
154
+ subTopic: never[];
155
+ knowledgeCell: string[];
156
+ transcript: string;
157
+ glossary: never[];
158
+ recap: {
159
+ summary: {
160
+ title: string;
161
+ description: string;
162
+ }[];
163
+ definitions: {
164
+ title: string;
165
+ description: string;
166
+ }[];
167
+ laws: {
168
+ title: string;
169
+ description: string;
170
+ }[];
171
+ applications: {
172
+ title: string;
173
+ description: string;
174
+ }[];
175
+ properties: {
176
+ title: string;
177
+ description: string;
178
+ }[];
179
+ keyConcepts: {
180
+ title: string;
181
+ description: string;
182
+ }[];
183
+ theorems: {
184
+ title: string;
185
+ description: string;
186
+ }[];
187
+ equations: {
188
+ title: string;
189
+ description: string;
190
+ }[];
191
+ reactions: {
192
+ title: string;
193
+ description: string;
194
+ }[];
195
+ processes: {
196
+ title: string;
197
+ description: string;
198
+ }[];
199
+ formulae: {
200
+ title: string;
201
+ description: string;
202
+ }[];
203
+ theme: {
204
+ title: string;
205
+ description: string;
206
+ }[];
207
+ centralIdea: {
208
+ title: string;
209
+ description: string;
210
+ }[];
211
+ poeticDevices: {
212
+ title: string;
213
+ description: string;
214
+ }[];
215
+ language: {
216
+ title: string;
217
+ description: string;
218
+ }[];
219
+ vocabulary: {
220
+ title: string;
221
+ description: string;
222
+ }[];
223
+ };
224
+ videoThumbnail: string;
225
+ createdAt: string;
226
+ updatedAt: string;
227
+ __v: number;
228
+ definition?: undefined;
229
+ video?: undefined;
230
+ theorem?: undefined;
231
+ formula?: undefined;
232
+ definitions?: undefined;
233
+ laws?: undefined;
234
+ applications?: undefined;
235
+ processes?: undefined;
236
+ keyConcept?: undefined;
237
+ timeline?: undefined;
238
+ theme?: undefined;
239
+ equations?: undefined;
240
+ summary?: undefined;
241
+ properties?: undefined;
242
+ keyConcepts?: undefined;
243
+ theorems?: undefined;
244
+ reactions?: undefined;
245
+ formulae?: undefined;
246
+ centralIdea?: undefined;
247
+ poeticDevices?: undefined;
248
+ language?: undefined;
249
+ vocabulary?: undefined;
250
+ };
251
+ videoThumbnail: string;
252
+ createdAt: string;
253
+ updatedAt: string;
254
+ __v: number;
255
+ } | {
256
+ _id: string;
257
+ type: string;
258
+ contentType: string;
259
+ title: string;
260
+ freezeRefCount: number;
261
+ curriculum: number[];
262
+ grade: string[];
263
+ subject: number[];
264
+ topic: string[];
265
+ subTopic: never[];
266
+ knowledgeCell: string[];
267
+ glossary: never[];
268
+ recap: {
269
+ theme: {
270
+ title: string;
271
+ description: string;
272
+ }[];
273
+ definition?: undefined;
274
+ video?: undefined;
275
+ theorem?: undefined;
276
+ formula?: undefined;
277
+ definitions?: undefined;
278
+ laws?: undefined;
279
+ applications?: undefined;
280
+ processes?: undefined;
281
+ keyConcept?: undefined;
282
+ timeline?: undefined;
283
+ _id?: undefined;
284
+ content?: undefined;
285
+ type?: undefined;
286
+ description?: undefined;
287
+ contentType?: undefined;
288
+ title?: undefined;
289
+ freezeRefCount?: undefined;
290
+ curriculum?: undefined;
291
+ grade?: undefined;
292
+ subject?: undefined;
293
+ topic?: undefined;
294
+ subTopic?: undefined;
295
+ knowledgeCell?: undefined;
296
+ transcript?: undefined;
297
+ glossary?: undefined;
298
+ recap?: undefined;
299
+ videoThumbnail?: undefined;
300
+ createdAt?: undefined;
301
+ updatedAt?: undefined;
302
+ __v?: undefined;
303
+ equations?: undefined;
304
+ summary?: undefined;
305
+ properties?: undefined;
306
+ keyConcepts?: undefined;
307
+ theorems?: undefined;
308
+ reactions?: undefined;
309
+ formulae?: undefined;
310
+ centralIdea?: undefined;
311
+ poeticDevices?: undefined;
312
+ language?: undefined;
313
+ vocabulary?: undefined;
314
+ };
315
+ createdAt: string;
316
+ updatedAt: string;
317
+ __v: number;
318
+ content?: undefined;
319
+ description?: undefined;
320
+ transcript?: undefined;
321
+ videoThumbnail?: undefined;
322
+ } | {
323
+ _id: string;
324
+ type: string;
325
+ contentType: string;
326
+ title: string;
327
+ freezeRefCount: number;
328
+ curriculum: number[];
329
+ grade: string[];
330
+ subject: number[];
331
+ topic: string[];
332
+ subTopic: never[];
333
+ knowledgeCell: string[];
334
+ glossary: never[];
335
+ recap: {
336
+ equations: {
337
+ title: string;
338
+ description: string;
339
+ }[];
340
+ definition?: undefined;
341
+ video?: undefined;
342
+ theorem?: undefined;
343
+ formula?: undefined;
344
+ definitions?: undefined;
345
+ laws?: undefined;
346
+ applications?: undefined;
347
+ processes?: undefined;
348
+ keyConcept?: undefined;
349
+ timeline?: undefined;
350
+ _id?: undefined;
351
+ content?: undefined;
352
+ type?: undefined;
353
+ description?: undefined;
354
+ contentType?: undefined;
355
+ title?: undefined;
356
+ freezeRefCount?: undefined;
357
+ curriculum?: undefined;
358
+ grade?: undefined;
359
+ subject?: undefined;
360
+ topic?: undefined;
361
+ subTopic?: undefined;
362
+ knowledgeCell?: undefined;
363
+ transcript?: undefined;
364
+ glossary?: undefined;
365
+ recap?: undefined;
366
+ videoThumbnail?: undefined;
367
+ createdAt?: undefined;
368
+ updatedAt?: undefined;
369
+ __v?: undefined;
370
+ theme?: undefined;
371
+ summary?: undefined;
372
+ properties?: undefined;
373
+ keyConcepts?: undefined;
374
+ theorems?: undefined;
375
+ reactions?: undefined;
376
+ formulae?: undefined;
377
+ centralIdea?: undefined;
378
+ poeticDevices?: undefined;
379
+ language?: undefined;
380
+ vocabulary?: undefined;
381
+ };
382
+ createdAt: string;
383
+ updatedAt: string;
384
+ __v: number;
385
+ content?: undefined;
386
+ description?: undefined;
387
+ transcript?: undefined;
388
+ videoThumbnail?: undefined;
389
+ } | {
390
+ _id: string;
391
+ type: string;
392
+ contentType: string;
393
+ title: string;
394
+ freezeRefCount: number;
395
+ curriculum: number[];
396
+ grade: string[];
397
+ subject: number[];
398
+ topic: string[];
399
+ subTopic: never[];
400
+ knowledgeCell: string[];
401
+ glossary: never[];
402
+ recap: {
403
+ summary: {
404
+ title: string;
405
+ description: string;
406
+ }[];
407
+ equations: {
408
+ title: string;
409
+ description: string;
410
+ }[];
411
+ definition?: undefined;
412
+ video?: undefined;
413
+ theorem?: undefined;
414
+ formula?: undefined;
415
+ definitions?: undefined;
416
+ laws?: undefined;
417
+ applications?: undefined;
418
+ processes?: undefined;
419
+ keyConcept?: undefined;
420
+ timeline?: undefined;
421
+ _id?: undefined;
422
+ content?: undefined;
423
+ type?: undefined;
424
+ description?: undefined;
425
+ contentType?: undefined;
426
+ title?: undefined;
427
+ freezeRefCount?: undefined;
428
+ curriculum?: undefined;
429
+ grade?: undefined;
430
+ subject?: undefined;
431
+ topic?: undefined;
432
+ subTopic?: undefined;
433
+ knowledgeCell?: undefined;
434
+ transcript?: undefined;
435
+ glossary?: undefined;
436
+ recap?: undefined;
437
+ videoThumbnail?: undefined;
438
+ createdAt?: undefined;
439
+ updatedAt?: undefined;
440
+ __v?: undefined;
441
+ theme?: undefined;
442
+ properties?: undefined;
443
+ keyConcepts?: undefined;
444
+ theorems?: undefined;
445
+ reactions?: undefined;
446
+ formulae?: undefined;
447
+ centralIdea?: undefined;
448
+ poeticDevices?: undefined;
449
+ language?: undefined;
450
+ vocabulary?: undefined;
451
+ };
452
+ createdAt: string;
453
+ updatedAt: string;
454
+ __v: number;
455
+ content?: undefined;
456
+ description?: undefined;
457
+ transcript?: undefined;
458
+ videoThumbnail?: undefined;
459
+ } | {
460
+ _id: string;
461
+ content: string;
462
+ type: string;
463
+ description: string;
464
+ contentType: string;
465
+ title: string;
466
+ freezeRefCount: number;
467
+ curriculum: number[];
468
+ grade: string[];
469
+ subject: number[];
470
+ topic: string[];
471
+ subTopic: never[];
472
+ knowledgeCell: string[];
473
+ transcript: string;
474
+ glossary: never[];
475
+ recap: {
476
+ summary: never[];
477
+ definitions: {
478
+ title: string;
479
+ description: string;
480
+ }[];
481
+ laws: {
482
+ title: string;
483
+ description: string;
484
+ }[];
485
+ applications: {
486
+ title: string;
487
+ description: string;
488
+ }[];
489
+ properties: {
490
+ title: string;
491
+ description: string;
492
+ }[];
493
+ keyConcepts: {
494
+ title: string;
495
+ description: string;
496
+ }[];
497
+ theorems: {
498
+ title: string;
499
+ description: string;
500
+ }[];
501
+ equations: never[];
502
+ reactions: {
503
+ title: string;
504
+ description: string;
505
+ }[];
506
+ processes: {
507
+ title: string;
508
+ description: string;
509
+ }[];
510
+ formulae: {
511
+ title: string;
512
+ description: string;
513
+ }[];
514
+ theme: {
515
+ title: string;
516
+ description: string;
517
+ }[];
518
+ centralIdea: {
519
+ title: string;
520
+ description: string;
521
+ }[];
522
+ poeticDevices: {
523
+ title: string;
524
+ description: string;
525
+ }[];
526
+ language: {
527
+ title: string;
528
+ description: string;
529
+ }[];
530
+ vocabulary: {
531
+ title: string;
532
+ description: string;
533
+ }[];
534
+ definition?: undefined;
535
+ video?: undefined;
536
+ theorem?: undefined;
537
+ formula?: undefined;
538
+ keyConcept?: undefined;
539
+ timeline?: undefined;
540
+ _id?: undefined;
541
+ content?: undefined;
542
+ type?: undefined;
543
+ description?: undefined;
544
+ contentType?: undefined;
545
+ title?: undefined;
546
+ freezeRefCount?: undefined;
547
+ curriculum?: undefined;
548
+ grade?: undefined;
549
+ subject?: undefined;
550
+ topic?: undefined;
551
+ subTopic?: undefined;
552
+ knowledgeCell?: undefined;
553
+ transcript?: undefined;
554
+ glossary?: undefined;
555
+ recap?: undefined;
556
+ videoThumbnail?: undefined;
557
+ createdAt?: undefined;
558
+ updatedAt?: undefined;
559
+ __v?: undefined;
560
+ };
561
+ videoThumbnail: string;
562
+ createdAt: string;
563
+ updatedAt: string;
564
+ __v: number;
565
+ } | {
33
566
  _id: string;
34
567
  content: string;
35
568
  type: string;
@@ -62,6 +595,44 @@ export const contentArrays: ({
62
595
  title: string;
63
596
  description: string;
64
597
  }[];
598
+ definition?: undefined;
599
+ video?: undefined;
600
+ theorem?: undefined;
601
+ formula?: undefined;
602
+ definitions?: undefined;
603
+ laws?: undefined;
604
+ applications?: undefined;
605
+ processes?: undefined;
606
+ keyConcept?: undefined;
607
+ timeline?: undefined;
608
+ _id?: undefined;
609
+ content?: undefined;
610
+ type?: undefined;
611
+ description?: undefined;
612
+ contentType?: undefined;
613
+ title?: undefined;
614
+ freezeRefCount?: undefined;
615
+ curriculum?: undefined;
616
+ grade?: undefined;
617
+ subject?: undefined;
618
+ topic?: undefined;
619
+ subTopic?: undefined;
620
+ knowledgeCell?: undefined;
621
+ transcript?: undefined;
622
+ glossary?: undefined;
623
+ recap?: undefined;
624
+ videoThumbnail?: undefined;
625
+ createdAt?: undefined;
626
+ updatedAt?: undefined;
627
+ __v?: undefined;
628
+ theme?: undefined;
629
+ properties?: undefined;
630
+ theorems?: undefined;
631
+ reactions?: undefined;
632
+ centralIdea?: undefined;
633
+ poeticDevices?: undefined;
634
+ language?: undefined;
635
+ vocabulary?: undefined;
65
636
  };
66
637
  videoThumbnail: string;
67
638
  createdAt: string;
@@ -106,8 +677,8 @@ export const contentArrays: ({
106
677
  createdAt: string;
107
678
  updatedAt: string;
108
679
  __v: number;
109
- glossary: never[];
110
- videoThumbnail: string;
680
+ glossary?: undefined;
111
681
  recap?: undefined;
682
+ videoThumbnail?: undefined;
112
683
  })[];
113
684
  export const contentMap: {};