Skip to content

Commit

Permalink
Version Packages (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci authored May 26, 2023
1 parent 042b841 commit 1953224
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 55 deletions.
19 changes: 0 additions & 19 deletions .changeset/brave-singers-knock.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/loud-nails-float.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/wicked-lies-allow.md

This file was deleted.

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

## 32.6.0

### Minor Changes

- **PageBlock:** Add new component ([#1307](https://github.com/seek-oss/braid-design-system/pull/1307))

Provides a top-level page container, constraining the content width (using `ContentBlock`) while establishing common screen gutters on smaller devices.

**EXAMPLE USAGE:**

```jsx
<PageBlock width="large">...</PageBlock>
```

- **Button, TextLinkButton:** Add `aria-label` support ([#1304](https://github.com/seek-oss/braid-design-system/pull/1304))

Provide support for `aria-label`, enabling additional context to be given to assistive technologies where context is typically visual.

**EXAMPLE USAGE:**

```jsx
<Button aria-label="Save job">Save</Button>
```

- **IconMessage:** Add new component ([#1303](https://github.com/seek-oss/braid-design-system/pull/1303))

Add new `IconMessage` component.

**EXAMPLE USAGE:**

```jsx
<IconMessage />
```

## 32.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": "32.5.0",
"version": "32.6.0",
"description": "Themeable design system for the SEEK Group",
"homepage": "https://seek-oss.github.io/braid-design-system/",
"bugs": {
Expand Down
24 changes: 24 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -3344,5 +3344,29 @@
"summary": "Add `seekJobs` theme\n\nThe `seekJobs` theme encapsulates the system changes necessary to apply and deliver the updated visual design language for SEEK Jobs.\nThrough the development of this theme, we have been able improve the fidelity of the various scales in our tokens, while also ensuring that the tokens themselves are consumed and applied more consistently throughout the system itself.\n\n**EXAMPLE USAGE:**\n```tsx\nimport seekJobs from 'braid-design-system/themes/seekJobs';\n\n<BraidProvider theme={seekJobs}>\n ...\n</BraidProvider>\n```\n\n**MIGRATION**\n\nConsumers of the `apac` theme are not recommended to migrate independently. The `seekJobs` theme represents an uplifted visual identity that is part of a wider visual uplift.\nInstead, we’ll be guiding the initial teams through a staged migration in coordination with the centralised team process.\nThere are some differences in how certain concepts are applied, whether it's the space scale, or `Card` usage, etc., and we will be documenting these in due course.\n\nIf you would like to talk about migrating, please reach out to us in our **#braid-support** channel on slack."
}
]
},
{
"version": "32.6.0",
"updates": [
{
"new": [
"PageBlock"
],
"summary": "**PageBlock:** Add new component\n\nProvides a top-level page container, constraining the content width (using `ContentBlock`) while establishing common screen gutters on smaller devices.\n\n**EXAMPLE USAGE:**\n```jsx\n<PageBlock width=\"large\">\n ...\n</PageBlock>\n```"
},
{
"updated": [
"Button",
"TextLinkButton"
],
"summary": "**Button, TextLinkButton:** Add `aria-label` support\n\nProvide support for `aria-label`, enabling additional context to be given to assistive technologies where context is typically visual.\n\n**EXAMPLE USAGE:**\n```jsx\n<Button aria-label=\"Save job\">Save</Button>\n```"
},
{
"new": [
"IconMessage"
],
"summary": "**IconMessage:** Add new component\n\nAdd new `IconMessage` component.\n\n**EXAMPLE USAGE:**\n```jsx\n<IconMessage />\n```"
}
]
}
]

0 comments on commit 1953224

Please sign in to comment.