@nous-research/ui 0.1.0 → 0.1.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 CHANGED
@@ -1,23 +1,15 @@
1
- # nous design language
1
+ # nous ui
2
2
 
3
3
  the shared design system for react ui @ nous. components, hooks, utils, fonts, overlays, etc.
4
4
 
5
5
  ## setup
6
6
 
7
- add it as a submodule for now.
7
+ `npm i @nous-research/ui` or `pnpm i @nous-research/ui`
8
8
 
9
- if you're using next.js, add to your config:
10
-
11
- ```ts
12
- transpilePackages: ['@nous/design-language']
13
- ```
14
-
15
- import tailwind and the design language styles in your global css:
9
+ import the design language styles in your global css:
16
10
 
17
11
  ```css
18
- @import 'tailwindcss';
19
- @import 'tw-animate-css';
20
- @import '@nous/design-language/styles/globals.css';
12
+ @import '@nous-research/ui/styles/globals.css';
21
13
  ```
22
14
 
23
15
  ## usage
@@ -29,16 +21,8 @@ import {
29
21
  Button,
30
22
  Grid
31
23
  // whatever else!
32
- } from '@nous/design-language'
33
- ```
34
-
35
- ## buiold
36
-
24
+ } from '@nous-research/ui'
37
25
  ```
38
- pnpm build
39
- ```
40
-
41
- compiles typescript, resolves path aliases, copies fonts + assets + css to `dist/`.
42
26
 
43
27
  ## demo app
44
28