Skip to content

Commit c09502d

Browse files
authored
Version Packages (#2038)
1 parent 0f145ef commit c09502d

11 files changed

Lines changed: 120 additions & 118 deletions

File tree

.changeset/cuddly-beds-matter.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

.changeset/legal-pigs-tan.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.changeset/red-drinks-float.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.changeset/slick-ways-exist.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/social-shoes-design.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/some-states-battle.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

packages/braid-design-system/CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,63 @@
11
# braid-design-system
22

3+
## 34.2.0
4+
5+
### Minor Changes
6+
7+
- **Dialog:** Add `coverImage` support ([#2052](https://github.com/seek-oss/braid-design-system/pull/2052))
8+
9+
Add support for providing a URL for a cover image to display at the top of the Dialog via the `coverImage` prop.
10+
The provided image must be compatible with the [CSS background-image “url” function].
11+
12+
**EXAMPLE USAGE:**
13+
14+
```jsx
15+
<Dialog
16+
title="Cover Image"
17+
coverImage="https://placehold.co/1600x900/051A49/FFFFFF/png?text=​++++++16:9++++++​"
18+
open={true}
19+
onClose={() => {}}
20+
>
21+
<Placeholder height={100} width="100%" label="Dialog Content" />
22+
</Dialog>
23+
```
24+
25+
[CSS background-image “url” function]: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/background-image
26+
27+
- **vars:** Exposed `vars.transition`. Transition CSS variables are available in stylesheets and runtime styles. ([#2034](https://github.com/seek-oss/braid-design-system/pull/2034))
28+
29+
**EXAMPLE USAGE:**
30+
31+
```ts
32+
import { vars } from 'braid-design-system/css':
33+
34+
export const myStyle = style({
35+
transition: vars.transition.fast,
36+
});
37+
```
38+
39+
- **Badge:** Added aria-hidden and aria-label props. ([#2034](https://github.com/seek-oss/braid-design-system/pull/2034))
40+
41+
`aria-hidden` allows a badge to be hidden from assistive technology
42+
43+
`aria-label` allows visible badge text to be overridden with a more descriptive label for screen readers
44+
45+
**EXAMPLE USAGE:**
46+
47+
```jsx
48+
<Badge aria-hidden>Deprecated</Badge>
49+
```
50+
51+
```jsx
52+
<Badge aria-label="You have 2 notifications">2</Badge>
53+
```
54+
55+
### Patch Changes
56+
57+
- **seekJobs, seekBusiness:** Update webfont url ([#2044](https://github.com/seek-oss/braid-design-system/pull/2044))
58+
59+
Point to the `www.seek.com` domain instead of `www.seek.com.au`.
60+
361
## 34.1.0
462

563
### Minor Changes

packages/braid-design-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "braid-design-system",
3-
"version": "34.1.0",
3+
"version": "34.2.0",
44
"description": "Themeable design system for the SEEK Group",
55
"homepage": "https://seek-oss.github.io/braid-design-system/",
66
"bugs": {

packages/docs-ui/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @braid-design-system/docs-ui
22

3+
## 4.2.0
4+
5+
### Minor Changes
6+
7+
- **TitleLink:** Added new component for rendering linkable headings with an optional copy-to-clipboard interaction. Should be wrapped in your required typographic component. ([#2034](https://github.com/seek-oss/braid-design-system/pull/2034))
8+
9+
**EXAMPLE:**
10+
11+
```jsx
12+
<Heading level="2">
13+
<TitleLink>Getting started</TitleLink>
14+
</Heading>
15+
```
16+
17+
With copy-to-clipboard:
18+
19+
```jsx
20+
<CategoryHeading component="h3">
21+
<TitleLink copyable>Appearance</TitleLink>
22+
</CategoryHeading>
23+
```
24+
25+
- **CategoryHeading:** Added new component for rendering category-style navigation headings. ([#2034](https://github.com/seek-oss/braid-design-system/pull/2034))
26+
27+
**EXAMPLE USAGE:**
28+
29+
```jsx
30+
<CategoryHeading component="h2">Layout</CategoryHeading>
31+
```
32+
333
## 4.1.0
434

535
### Minor Changes

packages/docs-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@braid-design-system/docs-ui",
3-
"version": "4.1.0",
3+
"version": "4.2.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/seek-oss/braid-design-system.git",

0 commit comments

Comments
 (0)