You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**react-virtualized-tree** is a tree view react library built on top of [react-virtualized](https://bvaughn.github.io/react-virtualized/#/components/List)
21
+
**react-vir-tree** is a tree view react library built on top of [react-virtualized](https://bvaughn.github.io/react-virtualized/#/components/List)
23
22
24
23
Its main goal is to display tree like data in a beautiful and fast way. Being a reactive library it uses children functions to achieve maximum extensibility. The core idea behind it is that anyone using it is enable to create a tree as they intent just by rendering their own components or components exported by the tree.
25
24
26
-
Demo and docs can be found [in here](https://diogofcunha.github.io/react-virtualized-tree/#/examples/basic-tree).
25
+
Demo and docs can be found [in here](https://highqualitycode.github.io/react-vir-tree/).
27
26
28
27
## Installation
29
28
30
29
You can install via npm or yarn.
31
-
`npm i react-virtualized-tree --save`
30
+
`npm i react-vir-tree --save`
32
31
33
32
or
34
33
35
-
`yarn add react-virtualized-tree`
34
+
`yarn add react-vir-tree`
36
35
37
36
To get the basic styles for free you need to import react-virtualized styles only once.
38
37
39
38
```
40
39
import 'react-virtualized/styles.css'
41
-
import 'react-virtualized-tree/lib/main.css'
40
+
import 'react-vir-tree/lib/main.css'
42
41
```
43
42
44
43
If you want to use the icons in the default renderers do the same for material icons.
@@ -49,12 +48,12 @@ If you want to use the icons in the default renderers do the same for material i
49
48
50
49
To use the standalone tree
51
50
52
-
`import Tree from 'react-virtualized-tree'`
51
+
`import Tree from 'react-vir-tree'`
53
52
54
53
To use the FilteringContainer
55
54
56
-
`import { FilteringContainer } from 'react-virtualized-tree'`
55
+
`import { FilteringContainer } from 'react-vir-tree'`
57
56
58
57
## Dependencies
59
58
60
-
Most react-virtualized-tree Dependencies are managed internally, the only required peerDependencies are **react**, **react-dom** and **react-virtualized**.
59
+
Most react-vir-tree Dependencies are managed internally, the only required peerDependencies are **react**, **react-dom** and **react-virtualized**.
0 commit comments