praxys-ui 1.1.0 → 1.2.1
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 +42 -0
- package/dist/index.js +10 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Praxys UI are documented here.
|
|
4
4
|
|
|
5
|
+
## [1.2.1] — Feb 15, 2026
|
|
6
|
+
|
|
7
|
+
**6 New Components — Essential UI Elements**
|
|
8
|
+
|
|
9
|
+
Essential interactive components: Switch, Slider, File Upload, OTP Input, Rating, and Autocomplete with async search — bringing the total to 69 components.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Switch — simple on/off toggle with spring animation, 3 sizes, optional label, keyboard accessible
|
|
14
|
+
- Slider — range input with draggable thumb, animated track fill, value tooltip, min/max labels, step support, keyboard navigation
|
|
15
|
+
- File Upload — drag-and-drop zone with animated borders, file list with remove buttons, progress bars, file type and size validation, multiple file support
|
|
16
|
+
- OTP Input — PIN/verification code input with auto-focus next/prev, paste support, animated focus rings, configurable length (4-6)
|
|
17
|
+
- Rating — interactive star rating with half-star support, hover preview, animated fill, read-only mode, 3 sizes, custom icon support
|
|
18
|
+
- Autocomplete — async search input with debouncing, loading state, keyboard navigation, highlighted matching text, empty state
|
|
19
|
+
|
|
20
|
+
### Improved
|
|
21
|
+
|
|
22
|
+
- CLI updated to v1.2.1 with all 69 components
|
|
23
|
+
- Component count updated from 63 to 69 across site
|
|
24
|
+
|
|
25
|
+
## [1.2.0] — Feb 15, 2026
|
|
26
|
+
|
|
27
|
+
**3 New Form Components — Complete Your Forms**
|
|
28
|
+
|
|
29
|
+
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.
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- Date Picker — animated calendar popup with month/year navigation, single/range selection, keyboard navigation, disabled dates support
|
|
34
|
+
- Combobox — searchable select with filtering, single/multi-select modes, keyboard navigation, search highlighting, loading state
|
|
35
|
+
- Color Picker — HSL sliders, hex input, preset swatches, alpha channel, format toggle (HEX/RGB/HSL), copy to clipboard
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- Skip-to-content accessibility link — now only appears on real keyboard Tab, never on route navigation
|
|
40
|
+
- AnimatedInput and AnimatedTextarea — support both controlled and uncontrolled usage for Playground compatibility
|
|
41
|
+
|
|
42
|
+
### Improved
|
|
43
|
+
|
|
44
|
+
- CLI updated to v1.2.0 with all 63 components
|
|
45
|
+
- Component count updated from 60 to 63 across site
|
|
46
|
+
|
|
5
47
|
## [1.1.0] — Feb 14, 2026
|
|
6
48
|
|
|
7
49
|
**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
|
|
9
|
+
const VERSION = "1.2.1";
|
|
10
10
|
// ─── Utility file contents ──────────────────────────────
|
|
11
11
|
const UTILS_CONTENT = `import { clsx, type ClassValue } from "clsx";
|
|
12
12
|
import { twMerge } from "tailwind-merge";
|
|
@@ -29,17 +29,22 @@ const COMPONENT_LIST = [
|
|
|
29
29
|
"animated-tabs",
|
|
30
30
|
"animated-textarea",
|
|
31
31
|
"animated-toggle",
|
|
32
|
+
"autocomplete",
|
|
32
33
|
"avatar-group",
|
|
33
34
|
"badge",
|
|
34
35
|
"breadcrumbs",
|
|
35
36
|
"checkbox",
|
|
37
|
+
"color-picker",
|
|
38
|
+
"combobox",
|
|
36
39
|
"command-menu",
|
|
37
40
|
"creepy-button",
|
|
38
41
|
"data-table",
|
|
42
|
+
"date-picker",
|
|
39
43
|
"displacement-text",
|
|
40
44
|
"divider",
|
|
41
45
|
"dropdown-menu",
|
|
42
46
|
"expandable-bento-grid",
|
|
47
|
+
"file-upload",
|
|
43
48
|
"flip-fade-text",
|
|
44
49
|
"flip-text",
|
|
45
50
|
"folder-preview",
|
|
@@ -59,20 +64,24 @@ const COMPONENT_LIST = [
|
|
|
59
64
|
"masked-avatars",
|
|
60
65
|
"modal-dialog",
|
|
61
66
|
"morphing-text",
|
|
67
|
+
"otp-input",
|
|
62
68
|
"pagination",
|
|
63
69
|
"parallax-scroll",
|
|
64
70
|
"perspective-grid",
|
|
65
71
|
"progress-bar",
|
|
66
72
|
"radio-group",
|
|
73
|
+
"rating",
|
|
67
74
|
"reveal-loader",
|
|
68
75
|
"sheet",
|
|
69
76
|
"skeleton-loader",
|
|
77
|
+
"slider",
|
|
70
78
|
"social-flip-button",
|
|
71
79
|
"spotlight-card",
|
|
72
80
|
"spotlight-navbar",
|
|
73
81
|
"staggered-grid",
|
|
74
82
|
"stats-card",
|
|
75
83
|
"stepper",
|
|
84
|
+
"switch",
|
|
76
85
|
"tag-input",
|
|
77
86
|
"testimonials-card",
|
|
78
87
|
"timeline",
|