pixelplay 1.0.0 → 1.0.4
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 +43 -0
- package/dist/index.d.mts +1323 -2
- package/dist/index.d.ts +1323 -2
- package/dist/index.js +67119 -15
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +67068 -2
- package/dist/index.mjs.map +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,49 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [1.0.3] — 2026-04-01
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **Auth examples**: `auth-03` (split-screen sign-in with testimonial carousel) and `auth-04` (split-screen sign-in with image only)
|
|
14
|
+
- **Sign-up examples**: `signup-01` (centered email + social), `signup-02` (header + tabs), `signup-03` (split-screen + testimonial carousel), `signup-04` (split-screen + image only)
|
|
15
|
+
- **`SplitImagePanel` widget**: New generic widget accepting any overlay content as `children`. Replaces the testimonial-specific panel. Supports image-only mode or any custom JSX overlay
|
|
16
|
+
- **`SplitImagePanel` docs page**: Component documentation with three demo sections — image only, with overlay content, and with navigation carousel
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Sidebar nav**: Renamed "Auth testimonial panel" entry to "Split image panel" with updated href
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## [1.0.2] — 2026-04-01
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- **Feature section grid**: Updated to 4-column layout on large screens
|
|
29
|
+
- **Feature section images**: Full-width responsive images replacing aspect-ratio crop — no content is clipped
|
|
30
|
+
- **Feature section images**: Added primary-colored overlay with `mix-blend-color` tint for grayscale thumbnails
|
|
31
|
+
- **Dark mode image previews**: Boosted brightness and reduced overlay opacity for better visibility in dark mode
|
|
32
|
+
- **Example preview containers**: Replaced raw Tailwind color scales with theme tokens for dark mode consistency
|
|
33
|
+
- **Dark mode scrim token**: Changed from opaque black to subtle white tint across all themes (default, Rosewood, Botanica, Inkwell)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## [1.0.1] — 2026-04-01
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- **Dashboard examples**: New dashboard variants (`dashboards-05`, `dashboards-06`) — analytics/map dashboard and personal finance dashboard
|
|
42
|
+
- **Country icon set**: Added `CountryFlag` component for displaying country flag icons
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- **Button `isIconOnly`**: Icon-only buttons now correctly render `children` — previously only `startContent`/`endContent` were visible, leaving icon-only buttons empty
|
|
47
|
+
- **Button hover visibility**: Improved hover background tokens for `ghost`, `bordered`, and `light` variants (default color) — hover state is now clearly visible against surface backgrounds
|
|
48
|
+
- Removed stale `import { start } from "repl"` in Button component
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
9
52
|
## [1.0.0] — 2026-03-30
|
|
10
53
|
|
|
11
54
|
### Added
|