praxys-ui 1.2.7 → 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 CHANGED
@@ -2,18 +2,52 @@
2
2
 
3
3
  All notable changes to Praxys UI are documented here.
4
4
 
5
- ## [1.2.7] — Feb 24, 2026
5
+ ## [1.2.6] — Feb 15, 2026
6
6
 
7
- **Flip Text — Hover Replay & 3D Fix**
7
+ **Color Customization & Enhanced Studio**
8
8
 
9
- Fixed Flip Text component with proper 3D per-character flip animation and hover-to-replay support.
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
- - Flip Textadded per-character 3D rotation with perspective, backface-visibility, and preserve-3d
14
- - Flip Textanimation now replays on hover via key remount
15
- - Flip Text — reduced default stagger delay for near-simultaneous character flips
16
- - Flip Text registry updated with new code and adjusted playground controls
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.6";
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";
@@ -47,6 +47,7 @@ const COMPONENT_LIST = [
47
47
  "file-upload",
48
48
  "flip-fade-text",
49
49
  "flip-text",
50
+ "floating-menu",
50
51
  "folder-preview",
51
52
  "glass-dock",
52
53
  "glow-border-card",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "praxys-ui",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "type": "module",
5
5
  "description": "CLI for scaffolding Praxys UI components into your project",
6
6
  "bin": {