From 34cf6fa724bb232eeb682bc4ce48de3b1dd4c8d6 Mon Sep 17 00:00:00 2001
From: seek-oss-ci <34733141+seek-oss-ci@users.noreply.github.com>
Date: Fri, 14 Jun 2024 15:42:16 +1000
Subject: [PATCH] Version Packages (#1513)
---
.changeset/slow-pears-deliver.md | 18 ------------------
packages/braid-design-system/CHANGELOG.md | 8 ++++++++
packages/braid-design-system/package.json | 2 +-
site/src/componentUpdates.json | 17 +++++++++++++++++
4 files changed, 26 insertions(+), 19 deletions(-)
delete mode 100644 .changeset/slow-pears-deliver.md
diff --git a/.changeset/slow-pears-deliver.md b/.changeset/slow-pears-deliver.md
deleted file mode 100644
index b3bd10a5b56..00000000000
--- a/.changeset/slow-pears-deliver.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-'braid-design-system': patch
----
-
----
-updated:
- - Autosuggest
- - Dialog
- - Drawer
- - PasswordField
- - Tag
- - TextField
- - useToast
----
-
-Move secondary ButtonIcon tone to icons
-
-Following the deprecation of the `secondary` tone of `ButtonIcon`, this updates all internal usages to apply the `secondary` tone directly to the icon.
diff --git a/packages/braid-design-system/CHANGELOG.md b/packages/braid-design-system/CHANGELOG.md
index 8ea3d35af10..8507d2df084 100644
--- a/packages/braid-design-system/CHANGELOG.md
+++ b/packages/braid-design-system/CHANGELOG.md
@@ -1,5 +1,13 @@
# braid-design-system
+## 32.19.1
+
+### Patch Changes
+
+- Move secondary ButtonIcon tone to icons ([#1512](https://github.com/seek-oss/braid-design-system/pull/1512))
+
+ Following the deprecation of the `secondary` tone of `ButtonIcon`, this updates all internal usages to apply the `secondary` tone directly to the icon.
+
## 32.19.0
### Minor Changes
diff --git a/packages/braid-design-system/package.json b/packages/braid-design-system/package.json
index bcea33f7332..9c743ec481c 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.19.0",
+ "version": "32.19.1",
"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 f637501e83c..55088ec5faf 100644
--- a/site/src/componentUpdates.json
+++ b/site/src/componentUpdates.json
@@ -3882,5 +3882,22 @@
"summary": "**ButtonIcon:** Add `formAccent` tone\n\nIntroduces support for the `formAccent` tone on `ButtonIcon`.\n\nThe new tone sits alongside the existing `neutral` tone, while the `secondary` tone is now deprecated and will be removed in a future version (see [Migration Guide] below).\n\n**EXAMPLE USAGE:**\n```jsx\n} />\n```\n\n**MIGRATION GUIDE:**\n\nFor consumers of the now deprecated `secondary` tone, you can pro-actively migrate away from it by moving the `tone` to the icon itself:\n\n```diff\n }\n+ icon={}\n```\n\n\n[Migration Guide]: #migration-guide"
}
]
+ },
+ {
+ "version": "32.19.1",
+ "updates": [
+ {
+ "updated": [
+ "Autosuggest",
+ "Dialog",
+ "Drawer",
+ "PasswordField",
+ "Tag",
+ "TextField",
+ "useToast"
+ ],
+ "summary": "Move secondary ButtonIcon tone to icons\n\nFollowing the deprecation of the `secondary` tone of `ButtonIcon`, this updates all internal usages to apply the `secondary` tone directly to the icon."
+ }
+ ]
}
]