Skip to content

Commit

Permalink
Version Packages (#1573)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci authored Sep 16, 2024
1 parent ce12384 commit e71ce0c
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 74 deletions.
22 changes: 0 additions & 22 deletions .changeset/five-ads-warn.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/forty-coins-wait.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/gentle-days-happen.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/shiny-shirts-teach.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/smart-needles-cross.md

This file was deleted.

30 changes: 30 additions & 0 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.0

### Minor Changes

- **Autosuggest**: Optimise automatic scrolling to selected suggestion by using native browser methods. ([#1571](https://github.com/seek-oss/braid-design-system/pull/1571))

### Patch Changes

- **Stack, Tiles:** Deprecate `dividers` prop ([#1574](https://github.com/seek-oss/braid-design-system/pull/1574))

In preparation for migrating Braid layout components to use [CSS gap], the `dividers` prop has been deprecated on `Stack` and `Tiles`.

Consumers are encouraged to migrate now in advance of its removal in v33.

#### Migration Guide

See [the migration guide] for details on how to migrate off the `dividers` prop.

[CSS gap]: https://developer.mozilla.org/en-US/docs/Web/CSS/gap
[migration guide]: https://github.com/seek-oss/braid-design-system/blob/master/docs/Removing%20dividers%20support%20from%20layout%20components.md

- **Autosuggest**: Improve handling of `suggestionHighlight` prop when set to `remaining` ([#1572](https://github.com/seek-oss/braid-design-system/pull/1572))

Fixes a bug in `Autosuggest` when using `suggestionHighlight` prop set to `remaining`.
If the input contained multiple words, the highlighted portion would be appended to the end of matching suggestions.

- **Divider:** Ensure full width in flex container ([#1574](https://github.com/seek-oss/braid-design-system/pull/1574))

Ensures the `Divider` component remains full width when used as a flex child inside a flex container.

## 32.23.1

### Patch Changes
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.23.1",
"version": "32.24.0",
"description": "Themeable design system for the SEEK Group",
"homepage": "https://seek-oss.github.io/braid-design-system/",
"bugs": {
Expand Down
14 changes: 14 additions & 0 deletions packages/docs-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @braid-design-system/docs-ui

## 2.2.0

### Minor Changes

- **LinkableHeading:** Add `badge` support ([#1574](https://github.com/seek-oss/braid-design-system/pull/1574))

**EXAMPLE USAGE:**

```jsx
<LinkableHeading level="3" badge={<Badge tone="caution">Deprecated</Badge>}>
Heading
</LinkableHeading>
```

## 2.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/docs-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@braid-design-system/docs-ui",
"version": "2.1.1",
"version": "2.2.0",
"license": "MIT",
"author": "SEEK",
"exports": {
Expand Down
30 changes: 30 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -4112,5 +4112,35 @@
"summary": "Standardise `disabled` & `critical` state across form fields\n\nImproves the consistency of form fields when combining both `disabled` and `critical` tone, which includes:\n- Hiding `critical` borders\n- Hiding `message` and not reserving space for it unless explicitly providing the `reserveMessageSpace` prop."
}
]
},
{
"version": "32.24.0",
"updates": [
{
"updated": [
"Stack",
"Tiles"
],
"summary": "**Stack, Tiles:** Deprecate `dividers` prop\n\nIn preparation for migrating Braid layout components to use [CSS gap], the `dividers` prop has been deprecated on `Stack` and `Tiles`.\n\nConsumers are encouraged to migrate now in advance of its removal in v33.\n\n#### Migration Guide\n\nSee [the migration guide] for details on how to migrate off the `dividers` prop.\n\n[CSS gap]: https://developer.mozilla.org/en-US/docs/Web/CSS/gap\n[migration guide]: https://github.com/seek-oss/braid-design-system/blob/master/docs/Removing%20dividers%20support%20from%20layout%20components.md"
},
{
"updated": [
"Autosuggest"
],
"summary": "**Autosuggest**: Improve handling of `suggestionHighlight` prop when set to `remaining`\n\nFixes a bug in `Autosuggest` when using `suggestionHighlight` prop set to `remaining`.\nIf the input contained multiple words, the highlighted portion would be appended to the end of matching suggestions."
},
{
"updated": [
"Divider"
],
"summary": "**Divider:** Ensure full width in flex container\n\nEnsures the `Divider` component remains full width when used as a flex child inside a flex container."
},
{
"updated": [
"Autosuggest"
],
"summary": "**Autosuggest**: Optimise automatic scrolling to selected suggestion by using native browser methods."
}
]
}
]

0 comments on commit e71ce0c

Please sign in to comment.