Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .changeset/clean-taxes-shop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eight-rivers-fix.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/petite-symbols-lie.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/plain-pots-see.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/silent-socks-strive.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/smooth-breads-flow.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/ten-donkeys-add.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/thirty-chicken-occur.md

This file was deleted.

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

## 34.1.0

### Minor Changes

- **IconCompany**, **IconPeople**, **IconProfile**: Add active property ([#2024](https://github.com/seek-oss/braid-design-system/pull/2024))

**EXAMPLE USAGE:**

```jsx
<IconCompany active />
<IconPeople active />
<IconProfile active />
```

- **IconImageBroken**, **IconPhotoAdd**: Added components ([#2024](https://github.com/seek-oss/braid-design-system/pull/2024))

**EXAMPLE USAGE:**

```jsx
<IconImageBroken />
<IconPhotoAdd />
```

### Patch Changes

- playroom: Rename snippets group from `Blocks` to `Sections` ([#2028](https://github.com/seek-oss/braid-design-system/pull/2028))

- **Textarea:** Fix highlight ranges when content overflows ([#2030](https://github.com/seek-oss/braid-design-system/pull/2030))

Resolves an issue where long running scrolling content in a `Textarea` with `highlightRanges` could result in the highlights being misaligned due to the scrollbar.

- **Textarea:** Ensure scroll bar insets field border ([#2030](https://github.com/seek-oss/braid-design-system/pull/2030))

Ensure the scroll bar sits inside of the field border when content overflows.

- **TextDropdown:** Updated font-size of options to maintain consistency and accessibility ([#2021](https://github.com/seek-oss/braid-design-system/pull/2021))

- **IconProfile**, **IconPeople**, **IconPersonAdd**: Update artwork, consistent with latest design language ([#2024](https://github.com/seek-oss/braid-design-system/pull/2024))

## 34.0.4

### Patch 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": "34.0.4",
"version": "34.1.0",
"description": "Themeable design system for the SEEK Group",
"homepage": "https://seek-oss.github.io/braid-design-system/",
"bugs": {
Expand Down
14 changes: 14 additions & 0 deletions packages/docs-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @braid-design-system/docs-ui

## 4.1.0

### Minor Changes

- **HeaderNavigation:** Added `onSearchClick` prop to support triggering the search interaction. ([#2029](https://github.com/seek-oss/braid-design-system/pull/2029))

**KeyboardShortcut:** Added new component for displaying keyboard shortcut hints.

**EXAMPLE USAGE:**

```jsx
<KeyboardShortcut keys={['CTRL', 'S']} shortcutLabel="Save" />
```

## 4.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/docs-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@braid-design-system/docs-ui",
"version": "4.0.1",
"version": "4.1.0",
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/braid-design-system.git",
Expand Down
46 changes: 46 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -5410,5 +5410,51 @@
{
"version": "34.0.4",
"updates": []
},
{
"version": "34.1.0",
"updates": [
{
"updated": [
"IconCompany",
"IconPeople",
"IconProfile"
],
"summary": "**IconCompany**, **IconPeople**, **IconProfile**: Add active property\n\n**EXAMPLE USAGE:**\n```jsx\n <IconCompany active />\n <IconPeople active />\n <IconProfile active />\n```"
},
{
"updated": [
"Textarea"
],
"summary": "**Textarea:** Fix highlight ranges when content overflows\n\nResolves an issue where long running scrolling content in a `Textarea` with `highlightRanges` could result in the highlights being misaligned due to the scrollbar."
},
{
"new": [
"IconImageBroken",
"IconPhotoAdd"
],
"summary": "**IconImageBroken**, **IconPhotoAdd**: Added components\n\n**EXAMPLE USAGE:**\n```jsx\n <IconImageBroken />\n <IconPhotoAdd />\n```"
},
{
"updated": [
"Textarea"
],
"summary": "**Textarea:** Ensure scroll bar insets field border\n\nEnsure the scroll bar sits inside of the field border when content overflows."
},
{
"updated": [
"TextDropdown"
],
"summary": "**TextDropdown:** Updated font-size of options to maintain consistency and accessibility"
},
{
"updated": [
"IconProfile",
"IconPeople",
"IconPersonAdd"
],
"summary": "**IconProfile**, **IconPeople**, **IconPersonAdd**: Update artwork, consistent with latest design language"
}
]
}
]
Loading