praxys-ui 1.2.6 → 1.2.8
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 +13 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Praxys UI are documented here.
|
|
4
4
|
|
|
5
|
+
## [1.2.7] — Feb 24, 2026
|
|
6
|
+
|
|
7
|
+
**Flip Text — Hover Replay & 3D Fix**
|
|
8
|
+
|
|
9
|
+
Fixed Flip Text component with proper 3D per-character flip animation and hover-to-replay support.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Flip Text — added per-character 3D rotation with perspective, backface-visibility, and preserve-3d
|
|
14
|
+
- Flip Text — animation 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
|
|
17
|
+
|
|
5
18
|
## [1.2.2] — Feb 15, 2026
|
|
6
19
|
|
|
7
20
|
**Autocomplete API Fix**
|
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.8";
|
|
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",
|