@shadng/sng-ui 1.0.0 → 1.0.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 +8 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
# sng-ui
|
|
1
|
+
# ShadNG UI (`@shadng/sng-ui`)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Angular UI component library inspired by shadcn/ui Figma designs.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Gallery
|
|
6
|
+
https://shadng.js.org
|
|
7
|
+
|
|
8
|
+
[](https://www.npmjs.com/package/@shadng/sng-ui)
|
|
6
9
|
[](https://angular.dev)
|
|
7
10
|
[](https://tailwindcss.com)
|
|
8
11
|
[](LICENSE)
|
|
@@ -10,7 +13,7 @@ Native Angular UI components inspired by shadcn/ui Figma designs.
|
|
|
10
13
|
## Installation
|
|
11
14
|
|
|
12
15
|
```bash
|
|
13
|
-
npm install sng-ui
|
|
16
|
+
npm install @shadng/sng-ui
|
|
14
17
|
```
|
|
15
18
|
|
|
16
19
|
Peer dependencies:
|
|
@@ -40,7 +43,7 @@ The CLI copies editable component source into your app.
|
|
|
40
43
|
|
|
41
44
|
```ts
|
|
42
45
|
import { Component } from '@angular/core';
|
|
43
|
-
import { SngButton } from 'sng-ui';
|
|
46
|
+
import { SngButton } from '@shadng/sng-ui';
|
|
44
47
|
|
|
45
48
|
@Component({
|
|
46
49
|
selector: 'app-example',
|
|
@@ -65,11 +68,6 @@ npm run test:cli
|
|
|
65
68
|
npm run pack:check
|
|
66
69
|
```
|
|
67
70
|
|
|
68
|
-
## Notes Before First Public Release
|
|
69
|
-
|
|
70
|
-
- Update `repository`, `homepage`, and `bugs.url` in `package.json` to your final GitHub repository.
|
|
71
|
-
- Keep tests and Storybook stories in this repo for contributors; npm publish excludes test/story artifacts via `.npmignore`.
|
|
72
|
-
|
|
73
71
|
## License
|
|
74
72
|
|
|
75
73
|
MIT
|