Skip to content

Commit

Permalink
Version Packages (#1713)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci authored Feb 12, 2025
1 parent 7cb5f64 commit c3ef2d4
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 61 deletions.
26 changes: 0 additions & 26 deletions .changeset/curvy-crabs-grow.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/new-hairs-laugh.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/serious-sloths-divide.md

This file was deleted.

35 changes: 35 additions & 0 deletions packages/braid-design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
<IconBulletList />
<IconNumberedList />
```

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
-<IconList />
+<IconBulletList />
```

- Add new icons to support rich text editors and formatting. ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711))

```tsx
<IconBold />
<IconItalic />
<IconTitle />
<IconRedo />
<IconUndo />
```

### Patch Changes

- **IconHeart, IconLink, IconLinkBroken:** Update design ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711))

## 33.5.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": "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": {
Expand Down
30 changes: 30 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -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<TextField tabIndex={-1} />\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<IconBulletList />\n<IconNumberedList />\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-<IconList />\n+<IconBulletList />\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<IconBold />\n<IconItalic />\n<IconTitle />\n<IconRedo />\n<IconUndo />\n```"
}
]
}
]

0 comments on commit c3ef2d4

Please sign in to comment.