Skip to content

Commit

Permalink
Version Packages (#1582)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci authored Sep 20, 2024
1 parent 81dc21a commit f54fc3c
Show file tree
Hide file tree
Showing 9 changed files with 180 additions and 181 deletions.
15 changes: 0 additions & 15 deletions .changeset/bright-squids-ring.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/good-hats-remember.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/hungry-ads-cheer.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/shiny-peas-love.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/smart-rocks-wait.md

This file was deleted.

105 changes: 0 additions & 105 deletions .changeset/spicy-olives-travel.md

This file was deleted.

41 changes: 36 additions & 5 deletions packages/braid-design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# braid-design-system

## 32.24.1

### Patch Changes

- **BraidTestProvider:** Provide `scrollIntoView` stub function for jsdom ([#1590](https://github.com/seek-oss/braid-design-system/pull/1590))

Fixes an issue where `scrollIntoView` is not defined in jsdom, causing tests to fail with the following error:

```
Error: Uncaught [TypeError: highlightedItem?.scrollIntoView is not a function]
```

- **Autosuggest:** Update suggestion group heading design ([#1581](https://github.com/seek-oss/braid-design-system/pull/1581))

Updating the design of the suggestion group headings, moving from `formAccent` to `secondary` tone, from all caps to provided casing, and from `xsmall` to `small` size.

- **Text, Heading:** Ensure `maxLines` truncates correctly when used as the direct child of a flex container. ([#1580](https://github.com/seek-oss/braid-design-system/pull/1580))

- Validate accessible field labels in development ([#1591](https://github.com/seek-oss/braid-design-system/pull/1591))

Introduce development-time validation for the `label` prop on form fields to guard against blank values and guide towards the alternative labelling options that are available.
This validation helps ensure that all fields are accessible to screen readers and other assistive technologies.

- **Spread:** Apply content width to children ([#1583](https://github.com/seek-oss/braid-design-system/pull/1583))

Align the behaviour of children in `Spread` to be the same as `Inline` children.
This makes their behaviour more predicatable when spreading full width elements, while also ensuring child elements are not stretched vertically.

- **Icons:** Support rendering inline as child of a flex container ([#1585](https://github.com/seek-oss/braid-design-system/pull/1585))

## 32.24.0

### Minor Changes
Expand Down Expand Up @@ -2049,7 +2079,7 @@ For more detail on the specific changes in this release, please read on.
```jsx
<MenuRenderer
onClose={closeReason => {
onClose={(closeReason) => {
// ...
}}
/>
Expand Down Expand Up @@ -2348,7 +2378,7 @@ For more detail on the specific changes in this release, please read on.
```jsx
<MenuRenderer
trigger={triggerProps => <Button {...triggerProps}>Button</Button>}
trigger={(triggerProps) => <Button {...triggerProps}>Button</Button>}
>
...
</MenuRenderer>
Expand Down Expand Up @@ -2780,8 +2810,9 @@ For more detail on the specific changes in this release, please read on.

type ThemeName = 'apac' | 'catho';

const BraidTheme = loadable.lib((props: { themeName: ThemeName }) =>
import(`braid-design-system/themes/${props.themeName}`),
const BraidTheme = loadable.lib(
(props: { themeName: ThemeName }) =>
import(`braid-design-system/themes/${props.themeName}`),
);

interface AppProps {
Expand Down Expand Up @@ -5440,7 +5471,7 @@ For more detail on the specific changes in this release, please read on.
<AccordionItem
id="id"
label="Label"
onToggle={expanded => trackSomething(expanded)}
onToggle={(expanded) => trackSomething(expanded)}
>
...
</AccordionItem>
Expand Down
2 changes: 1 addition & 1 deletion packages/braid-design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "braid-design-system",
"version": "32.24.0",
"version": "32.24.1",
"description": "Themeable design system for the SEEK Group",
"homepage": "https://seek-oss.github.io/braid-design-system/",
"bugs": {
Expand Down
Loading

0 comments on commit f54fc3c

Please sign in to comment.