From 7a3a1e97a5826a16cee66cc59aa63b924b9634a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Jan 2025 03:42:21 +0000 Subject: [PATCH] Version Packages --- .changeset/big-toys-walk.md | 10 --------- .changeset/friendly-trains-explain.md | 11 ---------- .changeset/green-wasps-fail.md | 22 -------------------- packages/braid-design-system/CHANGELOG.md | 25 +++++++++++++++++++++++ packages/braid-design-system/package.json | 2 +- site/src/componentUpdates.json | 24 ++++++++++++++++++++++ 6 files changed, 50 insertions(+), 44 deletions(-) delete mode 100644 .changeset/big-toys-walk.md delete mode 100644 .changeset/friendly-trains-explain.md delete mode 100644 .changeset/green-wasps-fail.md diff --git a/.changeset/big-toys-walk.md b/.changeset/big-toys-walk.md deleted file mode 100644 index 4d57e14576f..00000000000 --- a/.changeset/big-toys-walk.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'braid-design-system': patch ---- - ---- -updated: - - AccordionItem ---- - -**AccordionItem**: Fix issue that caused `data` props to be incorrectly parsed. diff --git a/.changeset/friendly-trains-explain.md b/.changeset/friendly-trains-explain.md deleted file mode 100644 index 846d35ac7c7..00000000000 --- a/.changeset/friendly-trains-explain.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'braid-design-system': patch ---- - ---- -updated: - - MenuRenderer - - OverflowMenu ---- - -**MenuRenderer, OverflowMenu**: Ensure the menu has a maximum height. diff --git a/.changeset/green-wasps-fail.md b/.changeset/green-wasps-fail.md deleted file mode 100644 index 2883c52330f..00000000000 --- a/.changeset/green-wasps-fail.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'braid-design-system': minor ---- - ---- -updated: - - theme ---- - -**theme:** Expose web fonts `href` on runtime tokens - -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" ] -``` diff --git a/packages/braid-design-system/CHANGELOG.md b/packages/braid-design-system/CHANGELOG.md index 052f7d056ea..8ad0e1318d2 100644 --- a/packages/braid-design-system/CHANGELOG.md +++ b/packages/braid-design-system/CHANGELOG.md @@ -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 diff --git a/packages/braid-design-system/package.json b/packages/braid-design-system/package.json index 288da426093..32e62bd3b43 100644 --- a/packages/braid-design-system/package.json +++ b/packages/braid-design-system/package.json @@ -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": { diff --git a/site/src/componentUpdates.json b/site/src/componentUpdates.json index 74c77ce6ddf..90b5bfe71ea 100644 --- a/site/src/componentUpdates.json +++ b/site/src/componentUpdates.json @@ -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```" + } + ] } ]