@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.
Files changed (2) hide show
  1. package/README.md +8 -10
  2. 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
- Native Angular UI components inspired by shadcn/ui Figma designs.
3
+ Angular UI component library inspired by shadcn/ui Figma designs.
4
4
 
5
- [![npm](https://img.shields.io/npm/v/sng-ui)](https://www.npmjs.com/package//sng-ui)
5
+ ## Gallery
6
+ https://shadng.js.org
7
+
8
+ [![npm](https://img.shields.io/npm/v/%40shadng%2Fsng-ui)](https://www.npmjs.com/package/@shadng/sng-ui)
6
9
  [![Angular](https://img.shields.io/badge/Angular-21-dd0031)](https://angular.dev)
7
10
  [![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-4-38bdf8)](https://tailwindcss.com)
8
11
  [![License](https://img.shields.io/badge/License-MIT-green)](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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shadng/sng-ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Native Angular UI components inspired by shadcn/ui Figma designs.",
5
5
  "license": "MIT",
6
6
  "repository": {