@j3m-quantum/ui 0.8.1 → 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.
- package/README.md +22 -3
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @j3m-quantum/ui
|
|
2
2
|
|
|
3
|
-
J3M Quantum UI - A
|
|
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** -
|
|
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
|
|
|
@@ -129,7 +129,6 @@ All of these are bundled and ready to use:
|
|
|
129
129
|
- recharts (Charts)
|
|
130
130
|
- react-day-picker + date-fns (Calendar)
|
|
131
131
|
- embla-carousel-react (Carousel)
|
|
132
|
-
- input-otp (OTP input)
|
|
133
132
|
- react-resizable-panels (Resizable)
|
|
134
133
|
- react-hook-form (Form handling)
|
|
135
134
|
|
|
@@ -180,6 +179,26 @@ export default defineConfig({
|
|
|
180
179
|
})
|
|
181
180
|
```
|
|
182
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
|
+
|
|
183
202
|
## License
|
|
184
203
|
|
|
185
204
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@j3m-quantum/ui",
|
|
3
|
-
"version": "0.8.
|
|
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",
|
|
@@ -77,7 +77,6 @@
|
|
|
77
77
|
"cmdk": "^1.0.0",
|
|
78
78
|
"date-fns": "^4.0.0",
|
|
79
79
|
"embla-carousel-react": "^8.0.0",
|
|
80
|
-
"input-otp": "^1.0.0",
|
|
81
80
|
"lucide-react": "^0.400.0",
|
|
82
81
|
"react-day-picker": "^9.0.0",
|
|
83
82
|
"react-hook-form": "^7.0.0",
|