@tomaszjarosz/react-visualizers 0.2.13 → 0.3.0
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 +288 -45
- package/dist/index.cjs +1272 -204
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +16 -0
- package/dist/index.js +1272 -204
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +53 -0
- package/package.json +6 -1
package/dist/index.d.ts
CHANGED
|
@@ -427,6 +427,22 @@ declare interface TreeSetVisualizerProps {
|
|
|
427
427
|
className?: string;
|
|
428
428
|
}
|
|
429
429
|
|
|
430
|
+
export declare const TrieVisualizer: default_2.NamedExoticComponent<TrieVisualizerProps>;
|
|
431
|
+
|
|
432
|
+
declare interface TrieVisualizerProps {
|
|
433
|
+
showControls?: boolean;
|
|
434
|
+
showCode?: boolean;
|
|
435
|
+
className?: string;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export declare const UnionFindVisualizer: default_2.NamedExoticComponent<UnionFindVisualizerProps>;
|
|
439
|
+
|
|
440
|
+
declare interface UnionFindVisualizerProps {
|
|
441
|
+
showControls?: boolean;
|
|
442
|
+
showCode?: boolean;
|
|
443
|
+
className?: string;
|
|
444
|
+
}
|
|
445
|
+
|
|
430
446
|
export declare function useInterviewMode(options: UseInterviewModeOptions): UseInterviewModeReturn;
|
|
431
447
|
|
|
432
448
|
export declare interface UseInterviewModeOptions {
|