praxys-ui 1.1.0 → 1.2.0

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,28 @@
2
2
 
3
3
  All notable changes to Praxys UI are documented here.
4
4
 
5
+ ## [1.2.0] — Feb 15, 2026
6
+
7
+ **3 New Form Components — Complete Your Forms**
8
+
9
+ Essential form components to complete your UI toolkit: Date Picker with range selection, Combobox with search, and Color Picker with HSL controls — bringing the total to 63 components.
10
+
11
+ ### Added
12
+
13
+ - Date Picker — animated calendar popup with month/year navigation, single/range selection, keyboard navigation, disabled dates support
14
+ - Combobox — searchable select with filtering, single/multi-select modes, keyboard navigation, search highlighting, loading state
15
+ - Color Picker — HSL sliders, hex input, preset swatches, alpha channel, format toggle (HEX/RGB/HSL), copy to clipboard
16
+
17
+ ### Fixed
18
+
19
+ - Skip-to-content accessibility link — now only appears on real keyboard Tab, never on route navigation
20
+ - AnimatedInput and AnimatedTextarea — support both controlled and uncontrolled usage for Playground compatibility
21
+
22
+ ### Improved
23
+
24
+ - CLI updated to v1.2.0 with all 63 components
25
+ - Component count updated from 60 to 63 across site
26
+
5
27
  ## [1.1.0] — Feb 14, 2026
6
28
 
7
29
  **11 New Components — Forms, Layout & Data**
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.1.0";
9
+ const VERSION = "1.2.0";
10
10
  // ─── Utility file contents ──────────────────────────────
11
11
  const UTILS_CONTENT = `import { clsx, type ClassValue } from "clsx";
12
12
  import { twMerge } from "tailwind-merge";
@@ -33,9 +33,12 @@ const COMPONENT_LIST = [
33
33
  "badge",
34
34
  "breadcrumbs",
35
35
  "checkbox",
36
+ "color-picker",
37
+ "combobox",
36
38
  "command-menu",
37
39
  "creepy-button",
38
40
  "data-table",
41
+ "date-picker",
39
42
  "displacement-text",
40
43
  "divider",
41
44
  "dropdown-menu",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "praxys-ui",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "description": "CLI for scaffolding Praxys UI components into your project",
6
6
  "bin": {