salespanda-ui 0.1.0 → 0.1.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 +18 -11
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,15 +1,18 @@
1
1
  # Salespanda UI
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/salespanda-ui.svg)](https://www.npmjs.com/package/salespanda-ui)
4
+ [![license](https://img.shields.io/npm/l/salespanda-ui.svg)](https://github.com/amit-g0swam1/lib/blob/main/LICENSE)
5
+
3
6
  A highly scalable, industry-standard React component library built with **Atomic Design**, **Radix UI**, and **Tailwind CSS**.
4
7
 
5
8
  ## Features
6
9
 
7
- - **Atomic Design:** Components organized by Atoms, Molecules, Organisms, and Layout for maximum scalability.
8
- - **Tailwind CSS:** Utility-first styling with integrated design tokens for effortless theming.
9
- - **Radix UI Primitives:** Accessible, ARIA-rich components that follow WAI-ARIA standards.
10
- - **Strict TypeScript:** 100% type safety with strict compiler rules and zero `any` usage.
11
- - **Storybook:** Interactive documentation and visual testing environment for every component.
12
- - **Fast Build:** Optimized bundling with `tsup` (esbuild).
10
+ - **Atomic Design:** Organized as Atoms, Molecules, Organisms, and Layouts.
11
+ - **Tailwind CSS:** Utility-first styling with integrated support for Tailwind CSS 4.
12
+ - **Radix UI Primitives:** ARIA-rich and accessible (WAI-ARIA compliant).
13
+ - **Strict TypeScript:** 100% type safety with zero `any` types.
14
+ - **Storybook:** Interactive development and documentation for all components.
15
+ - **Modern UI:** Premium design with glassmorphism, smooth animations, and curated colors.
13
16
 
14
17
  ## Installation
15
18
 
@@ -84,12 +87,16 @@ function App() {
84
87
  ### Layout
85
88
  `Container`, `Grid`, `Header`, `Footer`, `Sidebar`, `Navbar`
86
89
 
87
- ## Publication
90
+ ## Theming
88
91
 
89
- This library is prepared for NPM publication. To publish a new version:
92
+ Salespanda UI uses CSS Custom Properties for theming. You can override any token in your local CSS.
90
93
 
91
- 1. **Version Update:** `npm version patch` (or minor/major)
92
- 2. **Build & Publish:** `npm run publish:public`
94
+ ```css
95
+ :root {
96
+ --primary: 221.2 83.2% 53.3%;
97
+ --radius: 0.5rem;
98
+ }
99
+ ```
93
100
 
94
101
  ## Development
95
102
 
@@ -99,4 +106,4 @@ This library is prepared for NPM publication. To publish a new version:
99
106
  4. **Test:** `npm run test`
100
107
 
101
108
  ---
102
- Built with ❤️ by Amit Goswami
109
+ Built with ❤️ by [Amit Goswami](https://github.com/amit-g0swam1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "salespanda-ui",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Highly scalable, accessible React component library",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -113,4 +113,4 @@
113
113
  "vitest": "^3.0.7"
114
114
  },
115
115
  "packageManager": "npm@10.8.2"
116
- }
116
+ }