From 326ca31db0f3fdddade1ffedbecc22bed7c989ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 29 Jul 2024 05:05:45 +0000 Subject: [PATCH] Version Packages --- .changeset/calm-owls-fail.md | 15 ----------- .changeset/orange-news-flash.md | 17 ------------- .changeset/perfect-rockets-tan.md | 13 ---------- .changeset/strange-otters-carry.md | 10 -------- packages/braid-design-system/CHANGELOG.md | 31 +++++++++++++++++++++++ packages/braid-design-system/package.json | 2 +- site/src/componentUpdates.json | 29 +++++++++++++++++++++ 7 files changed, 61 insertions(+), 56 deletions(-) delete mode 100644 .changeset/calm-owls-fail.md delete mode 100644 .changeset/orange-news-flash.md delete mode 100644 .changeset/perfect-rockets-tan.md delete mode 100644 .changeset/strange-otters-carry.md diff --git a/.changeset/calm-owls-fail.md b/.changeset/calm-owls-fail.md deleted file mode 100644 index 68fbb53c855..00000000000 --- a/.changeset/calm-owls-fail.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'braid-design-system': minor ---- - ---- -new: - - IconHash ---- - -**IconHash:** Add component - -**EXAMPLE USAGE:** -```jsx - -``` diff --git a/.changeset/orange-news-flash.md b/.changeset/orange-news-flash.md deleted file mode 100644 index 6e15092c261..00000000000 --- a/.changeset/orange-news-flash.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'braid-design-system': minor ---- - ---- -updated: - - Autosuggest ---- - -**Autosuggest:** Add `suggestionHighlight` prop - -Introduces the `suggestionHighlight` prop, which uses the input value to automatically highlight either the `matching` or `remaining` portion of each suggestion. - -**EXAMPLE USAGE:** -```jsx - -``` \ No newline at end of file diff --git a/.changeset/perfect-rockets-tan.md b/.changeset/perfect-rockets-tan.md deleted file mode 100644 index 6519335a2be..00000000000 --- a/.changeset/perfect-rockets-tan.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'braid-design-system': patch ---- - ---- -updated: - - Badge ---- - -**Badge:** Ensure label follows correct tone - -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. diff --git a/.changeset/strange-otters-carry.md b/.changeset/strange-otters-carry.md deleted file mode 100644 index 8c955d4e583..00000000000 --- a/.changeset/strange-otters-carry.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'braid-design-system': patch ---- - ---- -updated: - - useToast ---- - -Fix warning in React 18.3.0 when using useToast. \ No newline at end of file diff --git a/packages/braid-design-system/CHANGELOG.md b/packages/braid-design-system/CHANGELOG.md index 020754d6412..5bc7725de44 100644 --- a/packages/braid-design-system/CHANGELOG.md +++ b/packages/braid-design-system/CHANGELOG.md @@ -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 + + ``` + +- **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 + + ``` + +### 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 diff --git a/packages/braid-design-system/package.json b/packages/braid-design-system/package.json index b798be1415b..2b4a1c4c067 100644 --- a/packages/braid-design-system/package.json +++ b/packages/braid-design-system/package.json @@ -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": { diff --git a/site/src/componentUpdates.json b/site/src/componentUpdates.json index d0dc1e91e9c..cc7dec05ca9 100644 --- a/site/src/componentUpdates.json +++ b/site/src/componentUpdates.json @@ -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\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\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." + } + ] } ]