diff --git a/.changeset/curvy-crabs-grow.md b/.changeset/curvy-crabs-grow.md deleted file mode 100644 index 8527cb81ce7..00000000000 --- a/.changeset/curvy-crabs-grow.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -'braid-design-system': minor ---- - ---- -new: - - IconBulletList - - IconNumberedList ---- - -Add new icons to represent other list types. -Sits alongside `IconChecklist` which already exists. - -```tsx - - -``` - -As a result we have deprecated `IconList` in favour of the more specific list types. `IconList` will be removed in a future major version. - -### MIGRATION GUIDE - -```diff -- -+ -``` diff --git a/.changeset/new-hairs-laugh.md b/.changeset/new-hairs-laugh.md deleted file mode 100644 index 5028be5ee18..00000000000 --- a/.changeset/new-hairs-laugh.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'braid-design-system': patch ---- - ---- -updated: - - IconHeart - - IconLink - - IconLinkBroken ---- - -**IconHeart, IconLink, IconLinkBroken:** Update design diff --git a/.changeset/serious-sloths-divide.md b/.changeset/serious-sloths-divide.md deleted file mode 100644 index 76c13f357f5..00000000000 --- a/.changeset/serious-sloths-divide.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'braid-design-system': minor ---- - ---- -new: - - IconBold - - IconItalic - - IconRedo - - IconTitle - - IconUndo ---- - -Add new icons to support rich text editors and formatting. - -```tsx - - - - - -``` diff --git a/packages/braid-design-system/CHANGELOG.md b/packages/braid-design-system/CHANGELOG.md index f5d1eb482b5..f26951250b4 100644 --- a/packages/braid-design-system/CHANGELOG.md +++ b/packages/braid-design-system/CHANGELOG.md @@ -1,5 +1,40 @@ # braid-design-system +## 33.6.0 + +### Minor Changes + +- Add new icons to represent other list types. ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711)) + Sits alongside `IconChecklist` which already exists. + + ```tsx + + + ``` + + As a result we have deprecated `IconList` in favour of the more specific list types. `IconList` will be removed in a future major version. + + ### MIGRATION GUIDE + + ```diff + - + + + ``` + +- Add new icons to support rich text editors and formatting. ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711)) + + ```tsx + + + + + + ``` + +### Patch Changes + +- **IconHeart, IconLink, IconLinkBroken:** Update design ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711)) + ## 33.5.0 ### Minor Changes diff --git a/packages/braid-design-system/package.json b/packages/braid-design-system/package.json index 7ea371b2736..2ad8f85ada4 100644 --- a/packages/braid-design-system/package.json +++ b/packages/braid-design-system/package.json @@ -1,6 +1,6 @@ { "name": "braid-design-system", - "version": "33.5.0", + "version": "33.6.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 c7c4281ea90..7e34a06caed 100644 --- a/site/src/componentUpdates.json +++ b/site/src/componentUpdates.json @@ -4731,5 +4731,35 @@ "summary": "Add `tabIndex` support to all form fields\n\nEnsure the `tabIndex` prop is available on all form fields, enabling greater control over which elements appear in the keyboard navigation flow.\n\nIn line with [MDN guidance], the only supported values are `0` and `-1` to ensure best practice for keyboard navigation and assistive technologies.\n\n**EXAMPLE USAGE:**\n```jsx\n\n```\n\n[MDN guidance]: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex#:~:text=only%20use%200%20and%20%2D1%20as%20tabindex%20values" } ] + }, + { + "version": "33.6.0", + "updates": [ + { + "new": [ + "IconBulletList", + "IconNumberedList" + ], + "summary": "Add new icons to represent other list types.\nSits alongside `IconChecklist` which already exists.\n\n```tsx\n\n\n```\n\nAs a result we have deprecated `IconList` in favour of the more specific list types. `IconList` will be removed in a future major version.\n\n### MIGRATION GUIDE\n\n```diff\n-\n+\n```" + }, + { + "updated": [ + "IconHeart", + "IconLink", + "IconLinkBroken" + ], + "summary": "**IconHeart, IconLink, IconLinkBroken:** Update design" + }, + { + "new": [ + "IconBold", + "IconItalic", + "IconRedo", + "IconTitle", + "IconUndo" + ], + "summary": "Add new icons to support rich text editors and formatting.\n\n```tsx\n\n\n\n\n\n```" + } + ] } ]