@@ -5,6 +5,47 @@ description:
5
5
features, bug fixes, and improvements.
6
6
---
7
7
8
+ ##[ 3.27.1] ( ./#3.27.1 ) - 2025-10-06
9
+
10
+ ###Fixed
11
+
12
+ - ** Collapsible** : Expose` Collapsible.Indicator ` component to provide visual
13
+ indicator for collapsible state
14
+
15
+ - ** Timeline** : Add` showLastSeparator ` variant to control visibility of the
16
+ last separator
17
+
18
+ - ** Table** : Ensure stickyHeader works with outline variant
19
+
20
+ - ** CodeBlock** :
21
+ - Fix issue in diff mode where the wrong lines were being highlighted
22
+ - Fix` highlight.js ` adapter to properly handle diff attributes for
23
+ added/removed lines
24
+
25
+ - ** Styled System** :
26
+ - Fix issue where bracket syntax for responsive styles didn't work in recipe
27
+ variants
28
+
29
+ ``` jsx
30
+ // This now works correctly
31
+ const recipe = defineRecipe ({
32
+ variants: {
33
+ variant: {
34
+ primary: {
35
+ color: [" red" ," green" ],// ✅ Now converts to breakpoints
36
+ },
37
+ },
38
+ },
39
+ })
40
+ ```
41
+
42
+ - Improve style resolution performance
43
+
44
+ - ** React 19 Compatibility** : Fix issue where refs don't support cleanup
45
+ function
46
+
47
+ - ** CLI** : Allow CLI to read new documentation blocks filtering
48
+
8
49
##[ 3.27.0] ( ./#3.27.0 ) - 2025-09-14
9
50
10
51
###Added