@@ -6,6 +6,48 @@ See the [Changesets](./.changeset) for the latest changes.
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.51.1] - 2025-01-01
10
+
11
+ ### Fixed
12
+
13
+ Redesigned the recipe report to be more readable and easier to understand. We simplified the ` JSX ` and ` Function `
14
+ columns to be more concise.
15
+
16
+ ** BEFORE**
17
+
18
+ ``` sh
19
+ ╔════════════════════════╤══════════════════════╤═════════╤═══════╤════════════╤═══════════════════╤══════════╗
20
+ ║ Recipe │ Variant Combinations │ Usage % │ JSX % │ Function % │ Most Used │ Found in ║
21
+ ╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢
22
+ ║ someRecipe (1 variant) │ 1 / 1 │ 100% │ 100% │ 0% │ size.small │ 1 file ║
23
+ ╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢
24
+ ║ button (4 variants) │ 7 / 9 │ 77.78% │ 63% │ 38% │ size.md, size.sm, │ 2 files ║
25
+ ║ │ │ │ │ │ state.focused, │ ║
26
+ ║ │ │ │ │ │ variant.danger, │ ║
27
+ ║ │ │ │ │ │ variant.primary │ ║
28
+ ╚════════════════════════╧══════════════════════╧═════════╧═══════╧════════════╧═══════════════════╧══════════╝
29
+ ```
30
+
31
+ ** AFTER**
32
+
33
+ ``` sh
34
+ ╔════════════════════════╤════════════════╤═══════════════════╤═══════════════════╤══════════╤═══════════╗
35
+ ║ Recipe │ Variant values │ Usage % │ Most used │ Found in │ Used as ║
36
+ ╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢
37
+ ║ someRecipe (1 variant) │ 1 value │ 100% (1 value) │ size.small │ 1 file │ jsx: 100% ║
38
+ ║ │ │ │ │ │ fn: 0% ║
39
+ ╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢
40
+ ║ button (4 variants) │ 9 values │ 77.78% (7 values) │ size.md, size.sm, │ 2 files │ jsx: 63% ║
41
+ ║ │ │ │ state.focused, │ │ fn: 38% ║
42
+ ║ │ │ │ variant.danger, │ │ ║
43
+ ║ │ │ │ variant.primary │ │ ║
44
+ ╚════════════════════════╧════════════════╧═══════════════════╧═══════════════════╧══════════╧═══════════╝
45
+ ```
46
+
47
+ ### Added
48
+
49
+ - Add support for ` panda analyze --output <file>.json ` to output the analysis results to a file.
50
+
9
51
## [ 0.51.0] - 2024-12-31
10
52
11
53
** [ BREAKING] ** : Fix issue where Next.js build might fail intermittently due to version mismatch between internal
0 commit comments