praxys-ui 1.2.8 → 1.2.9
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/CHANGELOG.md +41 -7
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,18 +2,52 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Praxys UI are documented here.
|
|
4
4
|
|
|
5
|
-
## [1.2.
|
|
5
|
+
## [1.2.6] — Feb 15, 2026
|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**Color Customization & Enhanced Studio**
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Added comprehensive color customization to Animation Studio and Theme Customizer with random palette generation and per-color editing.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Color Scheme Customization — 10 pre-made color schemes (Ocean, Forest, Sunset, Purple, Rose Gold, Mint, Fire, Cyberpunk, Monochrome)
|
|
14
|
+
- Theme Customizer Panel — "Make it yours" section with individual color editing (Primary, Secondary, Accent, Background, Text)
|
|
15
|
+
- Random Palette Generator — 🎲 Generate harmonious color palettes with one click in both Studio and /customize
|
|
16
|
+
- Per-Color Randomization — Random button (🎲) for each individual color property
|
|
17
|
+
- Color Pickers — Visual color selection with hex/HSL text input support
|
|
10
18
|
|
|
11
19
|
### Fixed
|
|
12
20
|
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
21
|
+
- React Style Warning — Changed background to backgroundImage to avoid conflicts with backgroundClip
|
|
22
|
+
- HSL to Hex Conversion — All colors properly converted for CSS compatibility
|
|
23
|
+
|
|
24
|
+
### Improved
|
|
25
|
+
|
|
26
|
+
- Random Color Algorithm — Uses color theory (analogous + complementary hues) for harmonious palettes
|
|
27
|
+
- Color Contrast — Fixed lightness/saturation values ensure readable, professional themes
|
|
28
|
+
- Live Preview Updates — All component previews dynamically use selected color scheme
|
|
29
|
+
|
|
30
|
+
## [1.2.5] — Feb 15, 2026
|
|
31
|
+
|
|
32
|
+
**Animation Studio — Visual Animation Builder**
|
|
33
|
+
|
|
34
|
+
Introducing the Animation Studio, a killer feature that sets PraxysUI apart. Visually design animations for any component with live preview, presets, and instant code generation.
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
|
|
38
|
+
- Animation Studio (/studio) — Interactive visual playground for designing component animations
|
|
39
|
+
- Live Preview Canvas — See animations play in real-time as you adjust parameters
|
|
40
|
+
- Animation Controls — Fine-tune initial state, animate state, and transitions with intuitive sliders
|
|
41
|
+
- 30+ Animation Presets — Pre-built entrance, attention, exit, and loop animations (fade, slide, bounce, scale, flip, rotate, etc.)
|
|
42
|
+
- Component Selector — Search and filter through all 69 components with category filters
|
|
43
|
+
- Code Generator — Instantly copy Framer Motion or CSS @keyframes code for your custom animations
|
|
44
|
+
- Auto-Play Mode — Automatically replay animations when changing parameters or components
|
|
45
|
+
- Category-Specific Previews — Realistic mockups for buttons, cards, text, navigation, and visual components
|
|
46
|
+
|
|
47
|
+
### Improved
|
|
48
|
+
|
|
49
|
+
- Mobile Responsive — Compact dropdown component selector on mobile, full experience preserved
|
|
50
|
+
- Navbar — Added "Studio" link for easy access
|
|
17
51
|
|
|
18
52
|
## [1.2.2] — Feb 15, 2026
|
|
19
53
|
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import prompts from "prompts";
|
|
|
6
6
|
import { existsSync, mkdirSync, writeFileSync } from "fs";
|
|
7
7
|
import { join } from "path";
|
|
8
8
|
import { execSync } from "child_process";
|
|
9
|
-
const VERSION = "1.2.
|
|
9
|
+
const VERSION = "1.2.9";
|
|
10
10
|
// ─── Utility file contents ──────────────────────────────
|
|
11
11
|
const UTILS_CONTENT = `import { clsx, type ClassValue } from "clsx";
|
|
12
12
|
import { twMerge } from "tailwind-merge";
|