@tomaszjarosz/react-visualizers 0.4.19 → 0.4.21
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/README.md +7 -1
- package/dist/index.cjs +3817 -299
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +58 -0
- package/dist/index.js +3817 -299
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +96 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -236,6 +236,16 @@ declare interface EnumSetVisualizerProps {
|
|
|
236
236
|
className?: string;
|
|
237
237
|
}
|
|
238
238
|
|
|
239
|
+
export declare const GCInterviewVisualizer: default_2.NamedExoticComponent<GCInterviewVisualizerProps>;
|
|
240
|
+
|
|
241
|
+
declare interface GCInterviewVisualizerProps {
|
|
242
|
+
showControls?: boolean;
|
|
243
|
+
showCode?: boolean;
|
|
244
|
+
className?: string;
|
|
245
|
+
shuffleQuestions?: boolean;
|
|
246
|
+
onComplete?: (session: ReturnType<typeof useInterviewMode>['session']) => void;
|
|
247
|
+
}
|
|
248
|
+
|
|
239
249
|
export declare const GCVisualizer: default_2.NamedExoticComponent<GCVisualizerProps>;
|
|
240
250
|
|
|
241
251
|
declare interface GCVisualizerProps {
|
|
@@ -276,6 +286,16 @@ declare interface HashMapVisualizerProps {
|
|
|
276
286
|
className?: string;
|
|
277
287
|
}
|
|
278
288
|
|
|
289
|
+
export declare const HashTableInterviewVisualizer: default_2.NamedExoticComponent<HashTableInterviewVisualizerProps>;
|
|
290
|
+
|
|
291
|
+
declare interface HashTableInterviewVisualizerProps {
|
|
292
|
+
showControls?: boolean;
|
|
293
|
+
showCode?: boolean;
|
|
294
|
+
className?: string;
|
|
295
|
+
shuffleQuestions?: boolean;
|
|
296
|
+
onComplete?: (session: ReturnType<typeof useInterviewMode>['session']) => void;
|
|
297
|
+
}
|
|
298
|
+
|
|
279
299
|
export declare const HashTableVisualizer: default_2.NamedExoticComponent<HashTableVisualizerProps>;
|
|
280
300
|
|
|
281
301
|
declare interface HashTableVisualizerProps {
|
|
@@ -301,6 +321,16 @@ declare interface HeapVisualizerProps {
|
|
|
301
321
|
|
|
302
322
|
export declare const HelpPanel: default_2.FC;
|
|
303
323
|
|
|
324
|
+
export declare const ImmutableCollectionsInterviewVisualizer: default_2.NamedExoticComponent<ImmutableCollectionsInterviewVisualizerProps>;
|
|
325
|
+
|
|
326
|
+
declare interface ImmutableCollectionsInterviewVisualizerProps {
|
|
327
|
+
showControls?: boolean;
|
|
328
|
+
showCode?: boolean;
|
|
329
|
+
className?: string;
|
|
330
|
+
shuffleQuestions?: boolean;
|
|
331
|
+
onComplete?: (session: ReturnType<typeof useInterviewMode>['session']) => void;
|
|
332
|
+
}
|
|
333
|
+
|
|
304
334
|
export declare const ImmutableCollectionsVisualizer: default_2.NamedExoticComponent<ImmutableCollectionsVisualizerProps>;
|
|
305
335
|
|
|
306
336
|
declare interface ImmutableCollectionsVisualizerProps {
|
|
@@ -405,6 +435,15 @@ declare interface LinkedListVisualizerProps {
|
|
|
405
435
|
className?: string;
|
|
406
436
|
}
|
|
407
437
|
|
|
438
|
+
export declare const ListComparisonInterviewVisualizer: default_2.NamedExoticComponent<ListComparisonInterviewVisualizerProps>;
|
|
439
|
+
|
|
440
|
+
declare interface ListComparisonInterviewVisualizerProps {
|
|
441
|
+
showControls?: boolean;
|
|
442
|
+
className?: string;
|
|
443
|
+
shuffleQuestions?: boolean;
|
|
444
|
+
onComplete?: (session: ReturnType<typeof useInterviewMode>['session']) => void;
|
|
445
|
+
}
|
|
446
|
+
|
|
408
447
|
export declare const ListComparisonVisualizer: default_2.NamedExoticComponent<ListComparisonVisualizerProps>;
|
|
409
448
|
|
|
410
449
|
declare interface ListComparisonVisualizerProps {
|
|
@@ -493,6 +532,15 @@ declare interface SkipListVisualizerProps {
|
|
|
493
532
|
*/
|
|
494
533
|
declare type SortingAlgorithm = 'bubble' | 'selection' | 'insertion' | 'quick' | 'merge';
|
|
495
534
|
|
|
535
|
+
export declare const SortingComparisonInterviewVisualizer: default_2.NamedExoticComponent<SortingComparisonInterviewVisualizerProps>;
|
|
536
|
+
|
|
537
|
+
declare interface SortingComparisonInterviewVisualizerProps {
|
|
538
|
+
showControls?: boolean;
|
|
539
|
+
className?: string;
|
|
540
|
+
shuffleQuestions?: boolean;
|
|
541
|
+
onComplete?: (session: ReturnType<typeof useInterviewMode>['session']) => void;
|
|
542
|
+
}
|
|
543
|
+
|
|
496
544
|
export declare const SortingComparisonVisualizer: default_2.NamedExoticComponent<SortingComparisonVisualizerProps>;
|
|
497
545
|
|
|
498
546
|
declare interface SortingComparisonVisualizerProps {
|
|
@@ -519,6 +567,16 @@ declare interface SortingVisualizerProps {
|
|
|
519
567
|
className?: string;
|
|
520
568
|
}
|
|
521
569
|
|
|
570
|
+
export declare const SQLJoinInterviewVisualizer: default_2.NamedExoticComponent<SQLJoinInterviewVisualizerProps>;
|
|
571
|
+
|
|
572
|
+
declare interface SQLJoinInterviewVisualizerProps {
|
|
573
|
+
showControls?: boolean;
|
|
574
|
+
showCode?: boolean;
|
|
575
|
+
className?: string;
|
|
576
|
+
shuffleQuestions?: boolean;
|
|
577
|
+
onComplete?: (session: ReturnType<typeof useInterviewMode>['session']) => void;
|
|
578
|
+
}
|
|
579
|
+
|
|
522
580
|
export declare const SQLJoinVisualizer: default_2.NamedExoticComponent<SQLJoinVisualizerProps>;
|
|
523
581
|
|
|
524
582
|
declare interface SQLJoinVisualizerProps {
|