braid-design-system 31.11.0 → 31.13.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
@@ -1,5 +1,53 @@
1
1
  # braid-design-system
2
2
 
3
+ ## 31.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - **MenuRenderer, OverflowMenu:** Provide context data to onClose ([#1115](https://github.com/seek-oss/braid-design-system/pull/1115))
8
+
9
+ The `onClose` handler now receives data to allow consumers to discern why the menu closed — either by exiting or selecting an action. See the [documentation](https://seek-oss.github.io/braid-design-system/components/MenuRenderer#menu-interactions) for more details.
10
+
11
+ **EXAMPLE USAGE:**
12
+
13
+ ```jsx
14
+ <MenuRenderer
15
+ onClose={closeReason => {
16
+ // ...
17
+ }}
18
+ />
19
+ ```
20
+
21
+ ## 31.12.0
22
+
23
+ ### Minor Changes
24
+
25
+ - **RadioItem:** Add `disabled` support ([#1108](https://github.com/seek-oss/braid-design-system/pull/1108))
26
+
27
+ Provide support for disabling individual `RadioItem`s within a `RadioGroup`.
28
+
29
+ **EXAMPLE USAGE:**
30
+
31
+ ```jsx
32
+ <RadioGroup>
33
+ <RadioItem label="One" value="1" />
34
+ <RadioItem label="Two" value="2" />
35
+ <RadioItem label="Three" value="3" disabled={true} />
36
+ </RadioGroup>
37
+ ```
38
+
39
+ ### Patch Changes
40
+
41
+ - **Dropdown:** React 18 compatibility ([#1114](https://github.com/seek-oss/braid-design-system/pull/1114))
42
+
43
+ ## 31.11.1
44
+
45
+ ### Patch Changes
46
+
47
+ - **Button, ButtonLink:** Ensure `bleedY` is backwards compatibile for `transparent` variant ([#1106](https://github.com/seek-oss/braid-design-system/pull/1106))
48
+
49
+ Ensure that `bleedY` applies bleed only vertically on `transparent` variant, isolating the new horizontal bleed to the new `bleed` prop exclusively.
50
+
3
51
  ## 31.11.0
4
52
 
5
53
  ### Minor Changes