From bbd14c59eee95378e77f8c1f2500563cd1c27608 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 6 Aug 2024 04:01:59 +0000 Subject: [PATCH] Version Packages --- .changeset/fast-kangaroos-switch.md | 29 ---------------- .changeset/pretty-geese-scream.md | 22 ------------ packages/braid-design-system/CHANGELOG.md | 41 +++++++++++++++++++++++ packages/braid-design-system/package.json | 2 +- site/src/componentUpdates.json | 17 ++++++++++ 5 files changed, 59 insertions(+), 52 deletions(-) delete mode 100644 .changeset/fast-kangaroos-switch.md delete mode 100644 .changeset/pretty-geese-scream.md diff --git a/.changeset/fast-kangaroos-switch.md b/.changeset/fast-kangaroos-switch.md deleted file mode 100644 index c3b220df08b..00000000000 --- a/.changeset/fast-kangaroos-switch.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -'braid-design-system': minor ---- - ---- -new: - - Column ---- - -**Column:** Add support for hide above/below breakpoint - -Introduce new `hideAbove` and `hideBelow` props on column for responsively hiding columns across breakpoint. - -These props can be used either separately or in combination to optimise content display across different screen sizes. - -**EXAMPLE USAGE:** -```jsx - - - - - - - - - - - -``` diff --git a/.changeset/pretty-geese-scream.md b/.changeset/pretty-geese-scream.md deleted file mode 100644 index 46701f19731..00000000000 --- a/.changeset/pretty-geese-scream.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'braid-design-system': minor ---- - ---- -new: - - Tabs ---- - -**Tabs:** Add `size` support - -Introduces the ability to customise the `size` of the `Tab` components in the tab list. -Available sizes are `standard` (default) and `small`. - -**EXAMPLE USAGE:** -```jsx - - First tab - Second tab - Third tab - -``` diff --git a/packages/braid-design-system/CHANGELOG.md b/packages/braid-design-system/CHANGELOG.md index d08b7c1b300..2e059235319 100644 --- a/packages/braid-design-system/CHANGELOG.md +++ b/packages/braid-design-system/CHANGELOG.md @@ -1,5 +1,46 @@ # braid-design-system +## 32.22.0 + +### Minor Changes + +- **Column:** Add support for hide above/below breakpoint ([#1553](https://github.com/seek-oss/braid-design-system/pull/1553)) + + Introduce new `hideAbove` and `hideBelow` props on column for responsively hiding columns across breakpoint. + + These props can be used either separately or in combination to optimise content display across different screen sizes. + + **EXAMPLE USAGE:** + + ```jsx + + + + + + + + + + + + ``` + +- **Tabs:** Add `size` support ([#1550](https://github.com/seek-oss/braid-design-system/pull/1550)) + + Introduces the ability to customise the `size` of the `Tab` components in the tab list. + Available sizes are `standard` (default) and `small`. + + **EXAMPLE USAGE:** + + ```jsx + + First tab + Second tab + Third tab + + ``` + ## 32.21.0 ### Minor Changes diff --git a/packages/braid-design-system/package.json b/packages/braid-design-system/package.json index 2e9451e2f97..e27d727a28b 100644 --- a/packages/braid-design-system/package.json +++ b/packages/braid-design-system/package.json @@ -1,6 +1,6 @@ { "name": "braid-design-system", - "version": "32.21.0", + "version": "32.22.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 975b11ace44..aab9bc53fee 100644 --- a/site/src/componentUpdates.json +++ b/site/src/componentUpdates.json @@ -4017,5 +4017,22 @@ "summary": "**MonthPicker:** Reduce space between month and year fields\n\nReducing the space between month and year fields to improve correlation between the two fields within the greater context of a form." } ] + }, + { + "version": "32.22.0", + "updates": [ + { + "new": [ + "Column" + ], + "summary": "**Column:** Add support for hide above/below breakpoint\n\nIntroduce new `hideAbove` and `hideBelow` props on column for responsively hiding columns across breakpoint.\n\nThese props can be used either separately or in combination to optimise content display across different screen sizes.\n\n**EXAMPLE USAGE:**\n```jsx\n\n \n \n \n \n \n \n \n \n \n\n```" + }, + { + "new": [ + "Tabs" + ], + "summary": "**Tabs:** Add `size` support\n\nIntroduces the ability to customise the `size` of the `Tab` components in the tab list.\nAvailable sizes are `standard` (default) and `small`.\n\n**EXAMPLE USAGE:**\n```jsx\n\n First tab\n Second tab\n Third tab\n\n```" + } + ] } ]