Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 17, 2025
1 parent 20f3837 commit 7a3a1e9
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 44 deletions.
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```"
}
]
}
]

0 comments on commit 7a3a1e9

Please sign in to comment.