@luminescent/ui 0.5.0 → 0.5.1
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 +2 -2
- package/lib-types/tailwind.config.d.ts +0 -1
- package/package.json +1 -1
- package/src/tailwind.config.js +0 -3
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
To use the Luminescent UI Qwik Library, you need to install the package from npm.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @luminescent/ui
|
|
6
|
+
npm install @anuragroy/tailwindcss-animate @luminescent/ui
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Once installed, since this is a tailwind based library, you need to include the following to your tailwind config
|
|
@@ -36,7 +36,7 @@ export default {
|
|
|
36
36
|
},
|
|
37
37
|
plugins: [
|
|
38
38
|
// ...
|
|
39
|
-
|
|
39
|
+
require('@anuragroy/tailwindcss-animate'),
|
|
40
40
|
],
|
|
41
41
|
};
|
|
42
42
|
```
|
package/package.json
CHANGED