Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 29, 2024
1 parent 71e819f commit 326ca31
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 56 deletions.
15 changes: 0 additions & 15 deletions .changeset/calm-owls-fail.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/orange-news-flash.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/perfect-rockets-tan.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/strange-otters-carry.md

This file was deleted.

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

## 32.21.0

### Minor Changes

- **IconHash:** Add component ([#1543](https://github.com/seek-oss/braid-design-system/pull/1543))

**EXAMPLE USAGE:**

```jsx
<IconHash />
```

- **Autosuggest:** Add `suggestionHighlight` prop ([#1536](https://github.com/seek-oss/braid-design-system/pull/1536))

Introduces the `suggestionHighlight` prop, which uses the input value to automatically highlight either the `matching` or `remaining` portion of each suggestion.

**EXAMPLE USAGE:**

```jsx
<Autosuggest suggestionHighlight="matching">
```

### Patch Changes

- **Badge:** Ensure label follows correct tone ([#1544](https://github.com/seek-oss/braid-design-system/pull/1544))

Ensure that the foreground text of a `Badge` always follows the correct tone for the background colour.
Fixes a bug where using a `Badge` in a `List` that overrides the default tone would result in the `Badge` text following the `List` tone instead of the `Badge` tone.

- Fix warning in React 18.3.0 when using useToast. ([#1534](https://github.com/seek-oss/braid-design-system/pull/1534))

## 32.20.0

### Minor 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.20.0",
"version": "32.21.0",
"description": "Themeable design system for the SEEK Group",
"homepage": "https://seek-oss.github.io/braid-design-system/",
"bugs": {
Expand Down
29 changes: 29 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -3946,5 +3946,34 @@
"summary": "**Toggle:** Remove tick icon & fix antialias haze when selected\n\nSimplying the selected state design by removing the tick icon from the toggle thumb.\n\nAlso fixes the antialias haze that appears around the thumb when selected."
}
]
},
{
"version": "32.21.0",
"updates": [
{
"new": [
"IconHash"
],
"summary": "**IconHash:** Add component\n\n**EXAMPLE USAGE:**\n```jsx\n<IconHash />\n```"
},
{
"updated": [
"Autosuggest"
],
"summary": "**Autosuggest:** Add `suggestionHighlight` prop\n\nIntroduces the `suggestionHighlight` prop, which uses the input value to automatically highlight either the `matching` or `remaining` portion of each suggestion.\n\n**EXAMPLE USAGE:**\n```jsx\n<Autosuggest suggestionHighlight=\"matching\">\n```"
},
{
"updated": [
"Badge"
],
"summary": "**Badge:** Ensure label follows correct tone\n\nEnsure that the foreground text of a `Badge` always follows the correct tone for the background colour.\nFixes a bug where using a `Badge` in a `List` that overrides the default tone would result in the `Badge` text following the `List` tone instead of the `Badge` tone."
},
{
"updated": [
"useToast"
],
"summary": "Fix warning in React 18.3.0 when using useToast."
}
]
}
]

0 comments on commit 326ca31

Please sign in to comment.