Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1682

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 0 additions & 10 deletions .changeset/big-toys-walk.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/friendly-trains-explain.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/green-wasps-fail.md

This file was deleted.

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

## 33.4.0

### Minor Changes

- **theme:** Expose web fonts `href` on runtime tokens ([#1685](https://github.com/seek-oss/braid-design-system/pull/1685))

Extend the `webFonts` runtime token to include the `href` property containing the web font URL.
This enables custom handling of web fonts beyond injecting the pre-constructed `link` tag(s).

**EXAMPLE USAGE:**

```jsx
import seekJobs from 'braid-design-system/themes/seekJobs';

const webFontHrefs = seekJobs.webFonts.map(({ href }) => href);

// => [ "https://www.seek.com.au/static/shared-web/seeksans.css" ]
```

### Patch Changes

- **AccordionItem**: Fix issue that caused `data` props to be incorrectly parsed. ([#1680](https://github.com/seek-oss/braid-design-system/pull/1680))

- **MenuRenderer, OverflowMenu**: Ensure the menu has a maximum height. ([#1679](https://github.com/seek-oss/braid-design-system/pull/1679))

## 33.3.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.3.0",
"version": "33.4.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 @@ -4669,5 +4669,29 @@
"summary": "**Accordion, AccordionItem**: Adjust spacing values for improved visual balance.\n\nThis change reduces the default spacing within `Accordion` and `AccordionItem` components at certain sizes, ensuring the content is better associated with the correct `AccordionItem`.\n\nWithin the `Accordion` component, the default space between `AccordionItem` components has been reduced for size `large` with dividers, and sizes `small` and `xsmall` without dividers.\nWithin the `AccordionItem` component, the space between the `label` and content has been reduced for sizes `large` and `small`."
}
]
},
{
"version": "33.4.0",
"updates": [
{
"updated": [
"AccordionItem"
],
"summary": "**AccordionItem**: Fix issue that caused `data` props to be incorrectly parsed."
},
{
"updated": [
"MenuRenderer",
"OverflowMenu"
],
"summary": "**MenuRenderer, OverflowMenu**: Ensure the menu has a maximum height."
},
{
"updated": [
"theme"
],
"summary": "**theme:** Expose web fonts `href` on runtime tokens\n\nExtend the `webFonts` runtime token to include the `href` property containing the web font URL.\nThis enables custom handling of web fonts beyond injecting the pre-constructed `link` tag(s).\n\n**EXAMPLE USAGE:**\n```jsx\nimport seekJobs from 'braid-design-system/themes/seekJobs';\n\nconst webFontHrefs = seekJobs.webFonts.map(({ href }) => href);\n\n// => [ \"https://www.seek.com.au/static/shared-web/seeksans.css\" ]\n```"
}
]
}
]
Loading