praxys-ui 1.2.1 → 1.2.5

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,6 +2,18 @@
2
2
 
3
3
  All notable changes to Praxys UI are documented here.
4
4
 
5
+ ## [1.2.2] — Feb 15, 2026
6
+
7
+ **Autocomplete API Fix**
8
+
9
+ Fixed Autocomplete component API to use onSelect callback instead of onChange for better clarity and type safety.
10
+
11
+ ### Fixed
12
+
13
+ - Autocomplete — changed API from onChange to onSelect, now passes full option object instead of just value string
14
+ - Autocomplete demo and documentation updated to reflect new API
15
+ - TypeScript errors resolved in Autocomplete component
16
+
5
17
  ## [1.2.1] — Feb 15, 2026
6
18
 
7
19
  **6 New Components — Essential UI Elements**
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.1";
9
+ const VERSION = "1.2.5";
10
10
  // ─── Utility file contents ──────────────────────────────
11
11
  const UTILS_CONTENT = `import { clsx, type ClassValue } from "clsx";
12
12
  import { twMerge } from "tailwind-merge";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "praxys-ui",
3
- "version": "1.2.1",
3
+ "version": "1.2.5",
4
4
  "type": "module",
5
5
  "description": "CLI for scaffolding Praxys UI components into your project",
6
6
  "bin": {