@aminnausin/cedar-ui 0.0.4 → 0.0.6
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 -0
- package/dist/cedar-ui.mjs +3133 -392
- package/dist/cedar-ui.umd.js +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +13 -16
package/README.md
CHANGED
|
@@ -16,6 +16,14 @@ npm install @aminnausin/cedar-ui
|
|
|
16
16
|
yarn add @aminnausin/cedar-ui
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
## Required Peer Dependencies
|
|
20
|
+
|
|
21
|
+
To use `@aminnausin/cedar-ui`, make sure the following packages are installed in your project:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install vue vue-router tailwindcss @tailwindcss/forms @tailwindcss/aspect-ratio @vueuse/core @vueuse/components @vueuse/integrations
|
|
25
|
+
```
|
|
26
|
+
|
|
19
27
|
## Documentation
|
|
20
28
|
|
|
21
29
|
For full documentation, visit [cedar-ui.nausin.me](https://cedar-ui.nausin.me).
|