@j3m-quantum/ui 0.8.2 → 0.8.3

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 +22 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # @j3m-quantum/ui
2
2
 
3
- J3M Quantum UI - A themed component library based on shadcn/ui with J3M design tokens.
3
+ J3M Quantum UI - A React component library with J3M design tokens.
4
4
 
5
5
  ## Features
6
6
 
7
7
  - **J3M Design Tokens** - Orange primary, neutral grays, pill-shaped buttons
8
8
  - **Dark Mode** - Full dark theme support via `.dark` class
9
9
  - **Glass Mode** - Frosted glass effects via `.theme-glass` class
10
- - **55+ Components** - All shadcn/ui components with J3M styling
10
+ - **55+ Components** - Complete UI component library with J3M styling
11
11
  - **All-in-One** - Everything bundled, just install and use
12
12
  - **Smooth Animations** - Powered by tw-animate-css
13
13
 
@@ -179,6 +179,26 @@ export default defineConfig({
179
179
  })
180
180
  ```
181
181
 
182
+ ## Version Strategy
183
+
184
+ We follow semantic versioning (semver):
185
+
186
+ | Version Change | When to Use | Example |
187
+ |----------------|-------------|---------|
188
+ | **Patch** (0.8.1 → 0.8.2) | Bug fixes, small styling tweaks | Fix button hover color |
189
+ | **Minor** (0.8.x → 0.9.0) | New components, new features (backward compatible) | Add new PlayerCanvas component |
190
+ | **Major** (0.x.x → 1.0.0) | Breaking changes, API changes, removed components | Rename component props |
191
+
192
+ ### Updating
193
+
194
+ To get the latest version:
195
+
196
+ ```bash
197
+ npm update @j3m-quantum/ui
198
+ # or
199
+ npm install @j3m-quantum/ui@latest
200
+ ```
201
+
182
202
  ## License
183
203
 
184
204
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j3m-quantum/ui",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "J3M UI Component Library - themed shadcn/ui components with design tokens",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",