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 Aug 6, 2024
1 parent b40fdd3 commit bbd14c5
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 52 deletions.
29 changes: 0 additions & 29 deletions .changeset/fast-kangaroos-switch.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/pretty-geese-scream.md

This file was deleted.

41 changes: 41 additions & 0 deletions packages/braid-design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
<Columns space="small">
<Column>
<Placeholder height={60} label="Always visible" />
</Column>
<Column hideBelow="tablet">
<Placeholder height={60} label="Tablet and above" />
</Column>
<Column hideAbove="mobile">
<Placeholder height={60} label="Mobile Only" />
</Column>
</Columns>
```

- **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
<Tabs size="small">
<Tab>First tab</Tab>
<Tab>Second tab</Tab>
<Tab>Third tab</Tab>
</Tabs>
```

## 32.21.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": "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": {
Expand Down
17 changes: 17 additions & 0 deletions site/src/componentUpdates.json
Original file line number Diff line number Diff line change
Expand Up @@ -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<Columns space=\"small\">\n <Column>\n <Placeholder height={60} label=\"Always visible\" />\n </Column>\n <Column hideBelow=\"tablet\">\n <Placeholder height={60} label=\"Tablet and above\" />\n </Column>\n <Column hideAbove=\"mobile\">\n <Placeholder height={60} label=\"Mobile Only\" />\n </Column>\n</Columns>\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<Tabs size=\"small\">\n <Tab>First tab</Tab>\n <Tab>Second tab</Tab>\n <Tab>Third tab</Tab>\n</Tabs>\n```"
}
]
}
]

0 comments on commit bbd14c5

Please sign in to comment.