@bigbinary/neetoui 3.0.1 → 3.0.2
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 +8 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,13 @@
|
|
|
8
8
|
yarn add @bigbinary/neetoui
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
This would install `neetoui` package inside your application.
|
|
12
|
+
Starting `3.0.x`, neetoUI stylesheet has been separated from the bundle. To get the styles working, please import the neetoUI stylesheet to your main `scss` entry point.
|
|
13
|
+
|
|
14
|
+
```scss
|
|
15
|
+
@import "@bigbinary/neetoui/v2";
|
|
16
|
+
```
|
|
17
|
+
|
|
11
18
|
If the project uses **NeetoUI v1**, install [Remixicons](https://remixicon.com/) as **NeetoUI v1** relies on it. It can be installed by executing following command.
|
|
12
19
|
|
|
13
20
|
```
|
|
@@ -51,4 +58,4 @@ Theme override gist: [Override Gist](https://gist.github.com/goutham-subramanyam
|
|
|
51
58
|
## Other Libraries
|
|
52
59
|
|
|
53
60
|
- [neetoIcons](https://github.com/bigbinary/neeto-icons): **NeetoIcons** is the official icons library from BigBinary.
|
|
54
|
-
- [neetoUtils](https://github.com/bigbinary/neeto-utils): **NeetoUtils** is a collection of react hooks and utility functions used at BigBinary.
|
|
61
|
+
- [neetoUtils](https://github.com/bigbinary/neeto-utils): **NeetoUtils** is a collection of react hooks and utility functions used at BigBinary.
|