@nx-extend/shadcn-ui 0.2.1 → 0.2.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/CHANGELOG.md +4 -0
- package/README.md +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.2.2](https://github.com/TriPSs/nx-extend/compare/shadcn-ui@0.2.1...shadcn-ui@0.2.2) (2024-01-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.2.1](https://github.com/TriPSs/nx-extend/compare/shadcn-ui@0.2.0...shadcn-ui@0.2.1) (2024-01-18)
|
|
6
10
|
|
|
7
11
|
|
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@ nx g @nx-extend/shadcn-ui:init
|
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
After installation update your APPs `tailwind.config.ts` to this:
|
|
19
|
+
|
|
19
20
|
```ts
|
|
20
21
|
import { buildConfig } from '../libs/<lib directory>/src/tailwind.config'
|
|
21
22
|
|
|
@@ -39,3 +40,9 @@ export const links: LinksFunction = () => [
|
|
|
39
40
|
```sh
|
|
40
41
|
nx add <ui lib name> button
|
|
41
42
|
```
|
|
43
|
+
|
|
44
|
+
## Updating the theme
|
|
45
|
+
|
|
46
|
+
The generated `global.css` uses the default shadcn/ui theme.
|
|
47
|
+
Using the shadcn/ui theme editor, you can effortlessly apply a different theme.
|
|
48
|
+
Explore available themes here: https://ui.shadcn.com/themes
|